From 8fc29186cfdec9e1537f38b8052ae51d6555be4b Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Tue, 14 Jan 2025 20:10:32 +0100 Subject: [PATCH] bump api --- 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 112f401103..a52993e9a0 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 = 300 +INVENTREE_API_VERSION = 301 """Increment this API version number whenever there is a significant change to the API that any clients need to know about.""" INVENTREE_API_TEXT = """ +v301 - 2025-01-14 - https://github.com/inventree/InvenTree/pull/8894 + - Remove ui preferences from the API + v300 - 2025-01-13 - https://github.com/inventree/InvenTree/pull/8886 - Allow null value for 'expiry_date' field introduced in #8867