2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 11:05:41 +00:00

Merge pull request #1841 from SchrodingersGat/api-bump

0.3.1
This commit is contained in:
Oliver
2021-07-19 15:56:39 +10:00
committed by GitHub

View File

@ -8,12 +8,16 @@ import re
import common.models
INVENTREE_SW_VERSION = "0.3.0"
INVENTREE_SW_VERSION = "0.3.1"
INVENTREE_API_VERSION = 7
INVENTREE_API_VERSION = 8
"""
Increment thi 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
v8 -> 2021-07-19
- Refactors the API interface for SupplierPart and ManufacturerPart models
- ManufacturerPart objects can no longer be created via the SupplierPart API endpoint
v7 -> 2021-07-03
- Introduced the concept of "API forms" in https://github.com/inventree/InvenTree/pull/1716