2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 11:36:44 +00:00

fix(backend): API version correction (#9243)

The API version was not corretly changed in https://github.com/inventree/InvenTree/pull/9131 - this fixes it.

Fixes https://github.com/inventree/InvenTree/issues/9242
This commit is contained in:
Matthias Mair 2025-03-05 12:24:29 +01:00 committed by GitHub
parent 017d96f64e
commit 8e753b3797
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,13 +1,16 @@
"""InvenTree API version information.""" """InvenTree API version information."""
# InvenTree API version # InvenTree API version
INVENTREE_API_VERSION = 319 INVENTREE_API_VERSION = 320
"""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."""
INVENTREE_API_TEXT = """ INVENTREE_API_TEXT = """
v320 - 2025-03-05 : https://github.com/inventree/InvenTree/pull/9243
- Link fields are now up to 2000 chars long
v319 - 2025-03-04 : https://github.com/inventree/InvenTree/pull/9199 v319 - 2025-03-04 : https://github.com/inventree/InvenTree/pull/9199
- Add detail API endpoint for the LabelOutput model - Add detail API endpoint for the LabelOutput model
- Add detail API endpoint for the ReportOutput model - Add detail API endpoint for the ReportOutput model