diff --git a/CHANGELOG.md b/CHANGELOG.md index f2b1be6bef..d232cbc29b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -All notable changes to this project will be documented in this file (starting with 1.0.0). +All major notable changes to this project will be documented in this file (starting with 1.0.0). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). @@ -9,7 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Breaking Changes -- [#10699](https://github.com/inventree/InvenTree/pull/10699) removes the `PartParameter` and `PartParameterTempalate` models (and associated API endpoints). These have been replaced with generic `Parameter` and `ParameterTemplate` models (and API endpoints). Any external client applications which made use of the old endpoints will need to be updated. +### Added + +### Changed + +### Removed + +## 1.2.0 - 2026-02-12 + +### Breaking Changes + +- [#10699](https://github.com/inventree/InvenTree/pull/10699) removes the `PartParameter` and `PartParameterTemplate` models (and associated API endpoints). These have been replaced with generic `Parameter` and `ParameterTemplate` models (and API endpoints). Any external client applications which made use of the old endpoints will need to be updated. - [#11035](https://github.com/inventree/InvenTree/pull/11035) moves to a single endpoint for all metadata operations. The previous endpoints for PartMetadata, SupplierPartMetadata, etc have been removed. Any external client applications which made use of the old endpoints will need to be updated. ### Added @@ -19,10 +29,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Adds parameter support for multiple new model types in [#10699](https://github.com/inventree/InvenTree/pull/10699) - Allows report generator to produce PDF input controls in [#10969](https://github.com/inventree/InvenTree/pull/10969) - UI overhaul of parameter management in [#10699](https://github.com/inventree/InvenTree/pull/10699) +- Allow input controls within generated PDF reports in [#10969](https://github.com/inventree/InvenTree/pull/10969) ### Changed -- +- Improved stocktake functionality in [#11257](https://github.com/inventree/InvenTree/pull/11257) ### Removed - Removed python 3.9 / 3.10 support as part of Django 5.2 upgrade in [#10730](https://github.com/inventree/InvenTree/pull/10730) diff --git a/src/backend/InvenTree/InvenTree/version.py b/src/backend/InvenTree/InvenTree/version.py index 83fd3a03a5..b66f834e06 100644 --- a/src/backend/InvenTree/InvenTree/version.py +++ b/src/backend/InvenTree/InvenTree/version.py @@ -17,7 +17,7 @@ from django.conf import settings from .api_version import INVENTREE_API_TEXT, INVENTREE_API_VERSION # InvenTree software version -INVENTREE_SW_VERSION = '1.2.0 dev' +INVENTREE_SW_VERSION = '1.3.0 dev' # Minimum supported Python version MIN_PYTHON_VERSION = (3, 11)