From 45b8556e849ba7643aabe56aa043f18637fb71e9 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Wed, 5 Mar 2025 12:04:16 +0100 Subject: [PATCH] fix(backend): API version correction The API version was not corretly changed in https://github.com/inventree/InvenTree/pull/9131 - this fixes it. Fixes https://github.com/inventree/InvenTree/issues/9242 --- src/backend/InvenTree/InvenTree/api_version.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/backend/InvenTree/InvenTree/api_version.py b/src/backend/InvenTree/InvenTree/api_version.py index af73eb081a86..bf38c91e6ad3 100644 --- a/src/backend/InvenTree/InvenTree/api_version.py +++ b/src/backend/InvenTree/InvenTree/api_version.py @@ -1,13 +1,16 @@ """InvenTree API version information.""" # InvenTree API version -INVENTREE_API_VERSION = 319 +INVENTREE_API_VERSION = 320 """Increment this API version number whenever there is a significant change to the API that any clients need to know about.""" INVENTREE_API_TEXT = """ +v320 - 2025-03-05 : https://github.com/inventree/InvenTree/pull/9243 + - Link fields are now up to 2000 chars long + v319 - 2025-03-04 : https://github.com/inventree/InvenTree/pull/9199 - Add detail API endpoint for the LabelOutput model - Add detail API endpoint for the ReportOutput model