From 78c6f9b90a0e74b25341207cd66a0093593891e3 Mon Sep 17 00:00:00 2001 From: Oliver <oliver.henry.walters@gmail.com> Date: Tue, 4 Apr 2023 14:54:31 +1000 Subject: [PATCH] Bump API version (#4577) - Forgot to do this in recent PR --- InvenTree/InvenTree/api_version.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/InvenTree/InvenTree/api_version.py b/InvenTree/InvenTree/api_version.py index 7badd83c9c..21cff45c72 100644 --- a/InvenTree/InvenTree/api_version.py +++ b/InvenTree/InvenTree/api_version.py @@ -2,11 +2,16 @@ # InvenTree API version -INVENTREE_API_VERSION = 106 +INVENTREE_API_VERSION = 107 """ Increment this API version number whenever there is a significant change to the API that any clients need to know about +v107 -> 2023-04-04 : https://github.com/inventree/InvenTree/pull/4575 + - Adds barcode support for PurchaseOrder model + - Adds barcode support for ReturnOrder model + - Adds barcode support for SalesOrder model + v106 -> 2023-04-03 : https://github.com/inventree/InvenTree/pull/4566 - Adds 'search_regex' parameter to all searchable API endpoints