diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f04f18..9225a49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## v2.5.3 (2024-10-04) + +### Feat + +- support --manifest-filepatterns + ## v2.5.2 (2024-09-27) ### Fix diff --git a/idf_build_apps/__init__.py b/idf_build_apps/__init__.py index 87b407e..a82eb50 100644 --- a/idf_build_apps/__init__.py +++ b/idf_build_apps/__init__.py @@ -8,7 +8,7 @@ # ruff: noqa: E402 # avoid circular imports -__version__ = '2.5.2' +__version__ = '2.5.3' from .session_args import ( SessionArgs, diff --git a/pyproject.toml b/pyproject.toml index b7dce7e..97c232c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ idf-build-apps = "idf_build_apps:main.main" [tool.commitizen] name = "cz_conventional_commits" -version = "2.5.2" +version = "2.5.3" tag_format = "v$version" version_files = [ "idf_build_apps/__init__.py",