From f8ebc3ca4da638f773eed42c1b59441bcfaa38b2 Mon Sep 17 00:00:00 2001 From: Sergei Silnov Date: Fri, 9 Aug 2024 15:01:37 +0200 Subject: [PATCH] change: bump version from v2.0.0rc1 to v2.0.0rc2 --- CHANGELOG.md | 12 ++++++++++++ idf_component_tools/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb3bc37..fccae36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ 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.0rc2 (2024-08-09) + +### Fix + +- manifest dump always adds empty fields +- remove redundant option --namespace from component pack CLI +- pack and upload components without manifests +- Fix login command with non-existing directory +- union of constraints of unequal clauses +- Wrong version returned by `compote version` +- Add upload mode to the pack_component + ## v2.0.0rc1 (2024-08-05) ### Feat diff --git a/idf_component_tools/__version__.py b/idf_component_tools/__version__.py index 86ac4bb..c319060 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.0rc1' +__version__ = '2.0.0rc2' diff --git a/pyproject.toml b/pyproject.toml index 4788ce5..16eeb1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ include = [ [project] name = "idf-component-manager" -version = "2.0.0rc1" +version = "2.0.0rc2" authors = [ { name = "Sergei Silnov", email = "sergei.silnov@espressif.com" }, { name = "Fu Hanxi", email = "fuhanxi@espressif.com" },