diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d966ab..1bd6e97 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. +## v2.0.1 (2024-08-15) + +### Fix + +- Fix filtering of files with default exclude filter patterns +- filterwarning "Running in an environment without IDF" while uploading + ## v2.0.0 (2024-08-12) ### Feat diff --git a/idf_component_tools/__version__.py b/idf_component_tools/__version__.py index 1e02827..21a3e7b 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.0.0' +__version__ = '2.0.1' diff --git a/pyproject.toml b/pyproject.toml index b686774..e431f28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ include = [ [project] name = "idf-component-manager" -version = "2.0.0" +version = "2.0.1" authors = [ { name = "Sergei Silnov", email = "sergei.silnov@espressif.com" }, { name = "Fu Hanxi", email = "fuhanxi@espressif.com" },