Merge branch 'version/v5.0.0' into 'master'

version: starting v5.0.0 development

See merge request espressif/esp-idf!15580
This commit is contained in:
Anton Maklakov
2021-10-21 03:37:51 +00:00
5 changed files with 12 additions and 21 deletions

View File

@@ -1,16 +1,8 @@
// Copyright 2019 Espressif Systems (Shanghai) PTE LTD /*
// * SPDX-FileCopyrightText: 2019-2021 Espressif Systems (Shanghai) CO LTD
// Licensed under the Apache License, Version 2.0 (the "License"); *
// you may not use this file except in compliance with the License. * SPDX-License-Identifier: Apache-2.0
// You may obtain a copy of the License at */
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once #pragma once
@@ -19,9 +11,9 @@ extern "C" {
#endif #endif
/** Major version number (X.x.x) */ /** Major version number (X.x.x) */
#define ESP_IDF_VERSION_MAJOR 4 #define ESP_IDF_VERSION_MAJOR 5
/** Minor version number (x.X.x) */ /** Minor version number (x.X.x) */
#define ESP_IDF_VERSION_MINOR 4 #define ESP_IDF_VERSION_MINOR 0
/** Patch version number (x.x.X) */ /** Patch version number (x.x.X) */
#define ESP_IDF_VERSION_PATCH 0 #define ESP_IDF_VERSION_PATCH 0

View File

@@ -6,7 +6,7 @@ dependencies:
espressif/es8311: "==0.0.2-alpha" espressif/es8311: "==0.0.2-alpha"
## Required IDF version ## Required IDF version
idf: idf:
version: "^4.4" version: "^5.0"
# # Put list of dependencies here # # Put list of dependencies here
# # For components maintained by Espressif: # # For components maintained by Espressif:
# component: # component:

View File

@@ -1,3 +1,3 @@
IDF_VERSION_MAJOR := 4 IDF_VERSION_MAJOR := 5
IDF_VERSION_MINOR := 4 IDF_VERSION_MINOR := 0
IDF_VERSION_PATCH := 0 IDF_VERSION_PATCH := 0

View File

@@ -738,7 +738,6 @@ components/esp_common/include/esp_bit_defs.h
components/esp_common/include/esp_check.h components/esp_common/include/esp_check.h
components/esp_common/include/esp_compiler.h components/esp_common/include/esp_compiler.h
components/esp_common/include/esp_err.h components/esp_common/include/esp_err.h
components/esp_common/include/esp_idf_version.h
components/esp_common/include/esp_types.h components/esp_common/include/esp_types.h
components/esp_common/src/esp_err_to_name.c components/esp_common/src/esp_err_to_name.c
components/esp_common/test/test_attr.c components/esp_common/test/test_attr.c

View File

@@ -1,5 +1,5 @@
set(IDF_VERSION_MAJOR 4) set(IDF_VERSION_MAJOR 5)
set(IDF_VERSION_MINOR 4) set(IDF_VERSION_MINOR 0)
set(IDF_VERSION_PATCH 0) set(IDF_VERSION_PATCH 0)
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}")