version: starting v5.0.0 development

pull/7764/head
Ivan Grokhotkov 2021-10-20 22:13:11 +02:00
rodzic fdfa260b91
commit 68233f58b4
4 zmienionych plików z 11 dodań i 20 usunięć

Wyświetl plik

@ -1,16 +1,8 @@
// Copyright 2019 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// 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.
/*
* SPDX-FileCopyrightText: 2019-2021 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
@ -19,9 +11,9 @@ extern "C" {
#endif
/** Major version number (X.x.x) */
#define ESP_IDF_VERSION_MAJOR 4
#define ESP_IDF_VERSION_MAJOR 5
/** Minor version number (x.X.x) */
#define ESP_IDF_VERSION_MINOR 4
#define ESP_IDF_VERSION_MINOR 0
/** Patch version number (x.x.X) */
#define ESP_IDF_VERSION_PATCH 0

Wyświetl plik

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

Wyświetl plik

@ -741,7 +741,6 @@ components/esp_common/include/esp_bit_defs.h
components/esp_common/include/esp_check.h
components/esp_common/include/esp_compiler.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/src/esp_err_to_name.c
components/esp_common/test/test_attr.c

Wyświetl plik

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