change(version): Update version to 5.4.2

This commit is contained in:
Xiao Xufeng
2025-06-20 14:35:04 +08:00
parent f0f2980d05
commit f5c3654a1c
3 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ variables:
GIT_FETCH_EXTRA_FLAGS: "--no-recurse-submodules --prune --prune-tags" GIT_FETCH_EXTRA_FLAGS: "--no-recurse-submodules --prune --prune-tags"
# we're using .cache folder for caches # we're using .cache folder for caches
GIT_CLEAN_FLAGS: -ffdx -e .cache/ GIT_CLEAN_FLAGS: -ffdx -e .cache/
LATEST_GIT_TAG: v5.4.1 LATEST_GIT_TAG: v5.4.2
SUBMODULE_FETCH_TOOL: "tools/ci/ci_fetch_submodule.py" SUBMODULE_FETCH_TOOL: "tools/ci/ci_fetch_submodule.py"
# by default we will fetch all submodules # by default we will fetch all submodules

View File

@@ -15,7 +15,7 @@ extern "C" {
/** Minor version number (x.X.x) */ /** Minor version number (x.X.x) */
#define ESP_IDF_VERSION_MINOR 4 #define ESP_IDF_VERSION_MINOR 4
/** Patch version number (x.x.X) */ /** Patch version number (x.x.X) */
#define ESP_IDF_VERSION_PATCH 1 #define ESP_IDF_VERSION_PATCH 2
/** /**
* Macro to convert IDF version number into an integer * Macro to convert IDF version number into an integer

View File

@@ -1,5 +1,5 @@
set(IDF_VERSION_MAJOR 5) set(IDF_VERSION_MAJOR 5)
set(IDF_VERSION_MINOR 4) set(IDF_VERSION_MINOR 4)
set(IDF_VERSION_PATCH 1) set(IDF_VERSION_PATCH 2)
set(ENV{IDF_VERSION} "${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}.${IDF_VERSION_PATCH}") set(ENV{IDF_VERSION} "${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}.${IDF_VERSION_PATCH}")