From d16ca027aa3156c29eef924b14fc6d2d7d1e618f Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Tue, 25 Jun 2024 19:48:45 +0200 Subject: [PATCH] bump API version --- src/backend/InvenTree/InvenTree/api_version.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/backend/InvenTree/InvenTree/api_version.py b/src/backend/InvenTree/InvenTree/api_version.py index e385a2e4e6..e041556fa3 100644 --- a/src/backend/InvenTree/InvenTree/api_version.py +++ b/src/backend/InvenTree/InvenTree/api_version.py @@ -1,11 +1,15 @@ """InvenTree API version information.""" # InvenTree API version -INVENTREE_API_VERSION = 208 +INVENTREE_API_VERSION = 209 """Increment this API version number whenever there is a significant change to the API that any clients need to know about.""" INVENTREE_API_TEXT = """ +v209 - 2024-06-25 : https://github.com/inventree/InvenTree/pull/6293 + - Removes a considerable amount of old auth endpoints + - Introduces allauth based REST API + v208 - 2024-06-19 : https://github.com/inventree/InvenTree/pull/7479 - Adds documentation for the user roles API endpoint (no functional changes)