diff --git a/components/esp_common/include/esp_idf_version.h b/components/esp_common/include/esp_idf_version.h index 52601ca8f..4ffbddc4b 100644 --- a/components/esp_common/include/esp_idf_version.h +++ b/components/esp_common/include/esp_idf_version.h @@ -23,7 +23,7 @@ extern "C" { /** Minor version number (x.X.x) */ #define ESP_IDF_VERSION_MINOR 0 /** Patch version number (x.x.X) */ -#define ESP_IDF_VERSION_PATCH 0 +#define ESP_IDF_VERSION_PATCH 1 /** * Macro to convert IDF version number into an integer diff --git a/make/version.mk b/make/version.mk index 9dcda422a..9a08bf41f 100644 --- a/make/version.mk +++ b/make/version.mk @@ -1,3 +1,3 @@ IDF_VERSION_MAJOR := 4 IDF_VERSION_MINOR := 0 -IDF_VERSION_PATCH := 0 +IDF_VERSION_PATCH := 1 diff --git a/tools/cmake/version.cmake b/tools/cmake/version.cmake index 265ab33b7..5b4d6be12 100644 --- a/tools/cmake/version.cmake +++ b/tools/cmake/version.cmake @@ -1,3 +1,3 @@ set(IDF_VERSION_MAJOR 4) set(IDF_VERSION_MINOR 0) -set(IDF_VERSION_PATCH 0) +set(IDF_VERSION_PATCH 1)