From 87dcaba0d87a68779cf415d6d6d8efaa4cb81692 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 17 Oct 2021 20:23:39 +1100 Subject: [PATCH] Bump API version --- InvenTree/InvenTree/static/script/inventree/delay.js | 12 ------------ InvenTree/InvenTree/version.py | 5 ++++- 2 files changed, 4 insertions(+), 13 deletions(-) delete mode 100644 InvenTree/InvenTree/static/script/inventree/delay.js diff --git a/InvenTree/InvenTree/static/script/inventree/delay.js b/InvenTree/InvenTree/static/script/inventree/delay.js deleted file mode 100644 index 9070d0c5b9..0000000000 --- a/InvenTree/InvenTree/static/script/inventree/delay.js +++ /dev/null @@ -1,12 +0,0 @@ -var msDelay = 0; - -var delay = (function(){ - return function(callback, ms){ - clearTimeout(msDelay); - msDelay = setTimeout(callback, ms); - }; -})(); - -function cancelTimer(){ - clearTimeout(msDelay); -} \ No newline at end of file diff --git a/InvenTree/InvenTree/version.py b/InvenTree/InvenTree/version.py index 5bbae8565e..48539713f2 100644 --- a/InvenTree/InvenTree/version.py +++ b/InvenTree/InvenTree/version.py @@ -12,11 +12,14 @@ import common.models INVENTREE_SW_VERSION = "0.6.0 dev" # InvenTree API version -INVENTREE_API_VERSION = 15 +INVENTREE_API_VERSION = 16 """ Increment this API version number whenever there is a significant change to the API that any clients need to know about +v16 -> 2021-10-17 + - Adds API endpoint for completing build order outputs + v15 -> 2021-10-06 - Adds detail endpoint for SalesOrderAllocation model - Allows use of the API forms interface for adjusting SalesOrderAllocation objects