Bump to 2.0.3 (#1241)

* fix c6 compilation error

* remove afe preferred core

* fix release.py missing board type config

* Bump to 2.0.3

* remove duplicated depends
This commit is contained in:
Xiaoxia
2025-09-26 08:52:43 +08:00
committed by GitHub
parent 916ea39fad
commit dd45d0de26
5 changed files with 6 additions and 7 deletions

View File

@@ -164,7 +164,9 @@ def release(board_type: str, config_filename: str = "config.json", *, filter_nam
continue
# Process sdkconfig_append
sdkconfig_append = build.get("sdkconfig_append", [])
board_type_config = _find_board_config(board_type)
sdkconfig_append = [f"{board_type_config}=y"]
sdkconfig_append.extend(build.get("sdkconfig_append", []))
print("-" * 80)
print(f"name: {name}")