mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Bump API version
This commit is contained in:
parent
90625af39d
commit
87dcaba0d8
@ -1,12 +0,0 @@
|
|||||||
var msDelay = 0;
|
|
||||||
|
|
||||||
var delay = (function(){
|
|
||||||
return function(callback, ms){
|
|
||||||
clearTimeout(msDelay);
|
|
||||||
msDelay = setTimeout(callback, ms);
|
|
||||||
};
|
|
||||||
})();
|
|
||||||
|
|
||||||
function cancelTimer(){
|
|
||||||
clearTimeout(msDelay);
|
|
||||||
}
|
|
@ -12,11 +12,14 @@ import common.models
|
|||||||
INVENTREE_SW_VERSION = "0.6.0 dev"
|
INVENTREE_SW_VERSION = "0.6.0 dev"
|
||||||
|
|
||||||
# InvenTree API version
|
# 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
|
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
|
v15 -> 2021-10-06
|
||||||
- Adds detail endpoint for SalesOrderAllocation model
|
- Adds detail endpoint for SalesOrderAllocation model
|
||||||
- Allows use of the API forms interface for adjusting SalesOrderAllocation objects
|
- Allows use of the API forms interface for adjusting SalesOrderAllocation objects
|
||||||
|
Loading…
Reference in New Issue
Block a user