From 3752b610c8c2e13b5762b9b8d58f38b82246fae4 Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 12 Feb 2026 19:53:08 +1100 Subject: [PATCH] Bump version number to 1.2.0 (#11299) * Bump version number to 1.2.0 * Update CHANGELOG.md --- CHANGELOG.md | 9 +++++---- src/backend/InvenTree/InvenTree/version.py | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2b1be6bef..82b88fff27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,15 @@ # 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). -## Unreleased - YYYY-MM-DD +## 1.2.0 - 2026-02-12 ### 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. +- [#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 +19,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..d1fd42fec1 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.2.0' # Minimum supported Python version MIN_PYTHON_VERSION = (3, 11)