Skip to content

Commit 34327fd

Browse files
committed
change: bump version from v2.1.2 to v2.2.0
1 parent 0f881ca commit 34327fd

File tree

3 files changed

+43
-2
lines changed

3 files changed

+43
-2
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,47 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
This changelog is managed with commitizen tool, don't update it manually.
99

10+
## v2.2.0 (2025-06-02)
11+
12+
### Feat
13+
14+
- **cli**: add commands to edit config
15+
- improve kconfig item debug message
16+
- use cmake syntax to represent kconfig option $CONFIG{...}
17+
- Upload examples defined in manifest separately
18+
- download component files hash from registry
19+
- rewrite validate functions
20+
- add util functions to create and parse file with checksums
21+
- remove checksum validation in fetcher
22+
- move logic from source to fetcher
23+
- create checksums manager class
24+
- download checksums json during component sync from registry
25+
- improve if parser, support int, bool, string
26+
- support kconfig items as if clause left value
27+
- Use include/exclude file filters with .gitiignore
28+
- Use system TLS certificate store when available (py3.10 or newer)
29+
- add esp32h4 known target
30+
- Remove responsibility for checking version existance when yanking
31+
- Add option to run network tests against the real environment
32+
33+
### Fix
34+
35+
- **cli**: Fix config unset command
36+
- convert component name to lower case
37+
- rename idf_component_tools tests folder
38+
- fix downloading local component
39+
- check if component cache folder exists in overwrite mode
40+
- adjust test to handle breaking change of stdout and stderr behaviour in click 8.2.0
41+
- use env var REGISTRY_URL and PROFILE for deps without registry_url set
42+
- skip calling `/api` when unnecessary
43+
- Fix hardcoded values to variables
44+
- Skipped asserts in help tests
45+
46+
### Refactor
47+
48+
- migrate to ruamel yaml
49+
- improve grammar and clarity in documentation and code comments
50+
1051
## v2.1.2 (2025-01-10)
1152

1253
### Fix

idf_component_tools/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# SPDX-License-Identifier: Apache-2.0
33
"""IDF Component Tools Version"""
44

5-
__version__ = '2.1.2'
5+
__version__ = '2.2.0'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include = [
1010

1111
[project]
1212
name = "idf-component-manager"
13-
version = "2.1.2"
13+
version = "2.2.0"
1414
authors = [
1515
{ name = "Sergei Silnov", email = "[email protected]" },
1616
{ name = "Fu Hanxi", email = "[email protected]" },

0 commit comments

Comments
 (0)