From e7503684d0eb683811f5a63849d558624f53c822 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 10 Aug 2026 21:58:40 +1000 Subject: [PATCH] Bump version number to 1.6.0-rev (#12603) * Bump version number to 1.6.0-rev * Add release date * Add next version entry --- CHANGELOG.md | 10 ++++++++++ src/backend/InvenTree/InvenTree/version.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5de01a32a..6c868e3f24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Breaking Changes +### Added + +### Changed + +### Removed + +## 1.5.0 - 2026-08-11 + +### Breaking Changes + - [#12529](https://github.com/inventree/InvenTree/pull/12529) removes related detail fields on API endpoints for which the user does not have view permissions. - [#12360](https://github.com/inventree/InvenTree/pull/12360) removes the MPTT mixin from the StockItem model, and removes the self-referential tree structure from the database. This change was made to simplify the StockItem model and improve performance, as the MPTT tree structure was causing significant overhead in certain operations. Any external client applications which made use of the MPTT functionality will need to be updated to account for this change. - [#12320](https://github.com/inventree/InvenTree/pull/12320) changes the default behavior of the `invoke migrate` command. Now, it no longer generates new migrations by default. Instead, it will only apply existing migrations to the database. If you want to detect and generate new migrations, you must now explicitly use the `--detect` flag. This change was made to prevent accidental generation of migrations when running the command, which could lead to unexpected changes in the database schema. Additionally, `invoke update` will no longer result in new migrations being generated, and will only apply existing migrations to the database. This change was made to ensure that the update process is predictable and does not introduce unexpected changes to the database schema. diff --git a/src/backend/InvenTree/InvenTree/version.py b/src/backend/InvenTree/InvenTree/version.py index 724c3b02f0..9d41c75422 100644 --- a/src/backend/InvenTree/InvenTree/version.py +++ b/src/backend/InvenTree/InvenTree/version.py @@ -15,7 +15,7 @@ from datetime import timedelta as td from .api_version import INVENTREE_API_TEXT, INVENTREE_API_VERSION # InvenTree software version -INVENTREE_SW_VERSION = '1.5.0 dev' +INVENTREE_SW_VERSION = '1.6.0 dev' # Minimum supported Python version MIN_PYTHON_VERSION = (3, 12)