From d2027dc5905735f002cfdd9badd5d10432e4b19e Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 4 Mar 2022 16:29:26 +1100 Subject: [PATCH] Increment API version --- InvenTree/InvenTree/version.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/InvenTree/InvenTree/version.py b/InvenTree/InvenTree/version.py index 678f69d228..2908cda052 100644 --- a/InvenTree/InvenTree/version.py +++ b/InvenTree/InvenTree/version.py @@ -12,11 +12,15 @@ import common.models INVENTREE_SW_VERSION = "0.7.0 dev" # InvenTree API version -INVENTREE_API_VERSION = 27 +INVENTREE_API_VERSION = 28 """ Increment this API version number whenever there is a significant change to the API that any clients need to know about +v28 -> 2022-03-04 + - Adds an API endpoint for auto allocation of stock items against a build order + - Ref: https://github.com/inventree/InvenTree/pull/2713 + v27 -> 2022-02-28 - Adds target_date field to individual line items for purchase orders and sales orders