diff --git a/CHANGES.rst b/CHANGES.rst index 5995cee28..5e3e838fd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,29 @@ Change log ========== -Version 1.2.0 [Unreleased] +Version 1.2.0 [2025-10-23] -------------------------- -Work in progress. +Changes +~~~~~~~ + +Dependencies +++++++++++++ + +- Bumped ``jinja2~=3.1.6``. +- Bumped ``jsonschema~=4.25.1``. +- Added support for Python ``3.11``, ``3.12``, and ``3.13``. +- Dropped support for Python ``3.8``. + +Bugfixes +~~~~~~~~ + +- Fixed parsing issues with complex bridge VLAN filtering configurations + `#356 `_. Added an + example in the documentation showing how to override ``bridge-vlan`` + interfaces. +- Fixed missing ``bridge-vlan`` sections when ``ula_prefix`` was present + `#357 `_. Version 1.1.3 [2025-07-31] -------------------------- diff --git a/netjsonconfig/version.py b/netjsonconfig/version.py index 51f73e4fd..f0b05c9fb 100644 --- a/netjsonconfig/version.py +++ b/netjsonconfig/version.py @@ -1,4 +1,4 @@ -VERSION = (1, 2, 0, "alpha") +VERSION = (1, 2, 0, "final") __version__ = VERSION diff --git a/requirements-test.txt b/requirements-test.txt index 8e903696c..ae74c9863 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -3,4 +3,4 @@ coveralls sphinx openwisp-sphinx-theme~=1.0.2 # commit message style check -openwisp-utils[qa] @ https://github.com/openwisp/openwisp-utils/tarball/1.2 +openwisp-utils[qa]~=1.2.0