diff --git a/CHANGELOG.md b/CHANGELOG.md index ab73fbc5..d69f5f77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ 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. +## v1.5.2 (2024-02-23) + +### Fix + +- wrongly terminate the version solver when versions not been found at the first round +- support boolean type for require field + ## v1.5.1 (2024-02-14) ### Fix diff --git a/idf_component_tools/__version__.py b/idf_component_tools/__version__.py index 379c2688..b456375a 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__ = '1.5.1' +__version__ = '1.5.2' diff --git a/pyproject.toml b/pyproject.toml index e51ea1eb..9c225ee0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ [tool.poetry] name = "idf-component-manager" -version = "1.5.1" +version = "1.5.2" description = "Espressif IDF Component Manager" authors = [] license = "Apache2"