diff --git a/CHANGELOG.md b/CHANGELOG.md index 485b4ba..d5ee16f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This changelog is managed with commitizen tool, don't update it manually. +## v2.1.2 (2025-01-10) + +### Fix + +- keep comments in config YAML with ruamel.yaml +- Limit urllib3 version for tests +- Always use canonical representation of the component version + ## v2.1.1 (2024-12-06) ### Fix diff --git a/idf_component_tools/__version__.py b/idf_component_tools/__version__.py index 942427e..8cb0f0b 100644 --- a/idf_component_tools/__version__.py +++ b/idf_component_tools/__version__.py @@ -2,4 +2,4 @@ # SPDX-License-Identifier: Apache-2.0 """IDF Component Tools Version""" -__version__ = '2.1.1' +__version__ = '2.1.2' diff --git a/pyproject.toml b/pyproject.toml index dbff3a0..3610d18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ include = [ [project] name = "idf-component-manager" -version = "2.1.1" +version = "2.1.2" authors = [ { name = "Sergei Silnov", email = "sergei.silnov@espressif.com" }, { name = "Fu Hanxi", email = "fuhanxi@espressif.com" },