Skip to content

Commit f21b4c2

Browse files
committed
change(version): Update version to 6.1-dev
Start of v6.1 development
1 parent d76364c commit f21b4c2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.gitlab/ci/common.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ variables:
3737
GIT_FETCH_EXTRA_FLAGS: "--no-recurse-submodules --prune --prune-tags"
3838
# we're using .cache folder for caches
3939
GIT_CLEAN_FLAGS: -ffdx -e .cache/
40-
LATEST_GIT_TAG: v6.0-dev
40+
LATEST_GIT_TAG: v6.1-dev
4141

4242
SUBMODULE_FETCH_TOOL: "tools/ci/ci_fetch_submodule.py"
4343
# by default we will fetch all submodules
@@ -52,9 +52,9 @@ variables:
5252
CHECKOUT_REF_SCRIPT: "$CI_PROJECT_DIR/tools/ci/checkout_project_ref.py"
5353

5454
# Docker images
55-
ESP_ENV_IMAGE: "${CI_DOCKER_REGISTRY}/esp-env-v6.0:3"
56-
ESP_IDF_DOC_ENV_IMAGE: "${CI_DOCKER_REGISTRY}/esp-idf-doc-env-v6.0:2-1"
57-
TARGET_TEST_ENV_IMAGE: "${CI_DOCKER_REGISTRY}/target-test-env-v6.0:2"
55+
ESP_ENV_IMAGE: "${CI_DOCKER_REGISTRY}/esp-env-v6.1:1"
56+
ESP_IDF_DOC_ENV_IMAGE: "${CI_DOCKER_REGISTRY}/esp-idf-doc-env-v6.1:1-1"
57+
TARGET_TEST_ENV_IMAGE: "${CI_DOCKER_REGISTRY}/target-test-env-v6.1:1"
5858
SONARQUBE_SCANNER_IMAGE: "${CI_DOCKER_REGISTRY}/sonarqube-scanner:5"
5959

6060
# cache python dependencies
@@ -66,7 +66,7 @@ variables:
6666
CI_PYTHON_CONSTRAINT_BRANCH: ""
6767

6868
# Update the filename for a specific ESP-IDF release. It is used only with CI_PYTHON_CONSTRAINT_BRANCH.
69-
CI_PYTHON_CONSTRAINT_FILE: "espidf.constraints.v6.0.txt"
69+
CI_PYTHON_CONSTRAINT_FILE: "espidf.constraints.v6.1.txt"
7070

7171
# Set this variable to repository name of a Python tool you wish to install and test in the context of ESP-IDF CI.
7272
# Keep the variable empty when not used.

components/esp_common/include/esp_idf_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ extern "C" {
1313
/** Major version number (X.x.x) */
1414
#define ESP_IDF_VERSION_MAJOR 6
1515
/** Minor version number (x.X.x) */
16-
#define ESP_IDF_VERSION_MINOR 0
16+
#define ESP_IDF_VERSION_MINOR 1
1717
/** Patch version number (x.x.X) */
1818
#define ESP_IDF_VERSION_PATCH 0
1919

tools/cmake/version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
set(IDF_VERSION_MAJOR 6)
2-
set(IDF_VERSION_MINOR 0)
2+
set(IDF_VERSION_MINOR 1)
33
set(IDF_VERSION_PATCH 0)
44

55
set(ENV{IDF_VERSION} "${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}.${IDF_VERSION_PATCH}")

0 commit comments

Comments
 (0)