From 70a13726ccd6cf21fd595808a90c83ed3013b045 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Mon, 15 Jan 2024 09:05:47 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=202.0.0=20=E2=86=92=202.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ idf_build_apps/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e1e908..d46d25e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## v2.0.1 (2024-01-15) + +### Fix + +- wrongly skipped the build when `depends_filepatterns` matched but no component modified + ## v2.0.0 (2024-01-11) ### Feat diff --git a/idf_build_apps/__init__.py b/idf_build_apps/__init__.py index 4f0d22a..e799ce7 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.0.0' +__version__ = '2.0.1' from .session_args import ( SessionArgs, diff --git a/pyproject.toml b/pyproject.toml index 38fda23..ee49b55 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.0.0" +version = "2.0.1" tag_format = "v$version" version_files = [ "idf_build_apps/__init__.py",