From 9ea3b1777a7d4d242a30863630bde6ebf3616a33 Mon Sep 17 00:00:00 2001 From: Tao He Date: Thu, 1 Dec 2022 09:44:39 +0800 Subject: [PATCH] Upgrade vineyard version to v0.11.0 Signed-off-by: Tao He --- CMakeLists.txt | 4 ++-- charts/vineyard-operator/Chart.yaml | 4 ++-- setup.cfg | 2 +- src/common/util/config.h | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f1e5c811..11a0dd46 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ cmake_minimum_required(VERSION 3.3) set(VINEYARD_MAJOR_VERSION 0) -set(VINEYARD_MINOR_VERSION 10) -set(VINEYARD_PATCH_VERSION 2) +set(VINEYARD_MINOR_VERSION 11) +set(VINEYARD_PATCH_VERSION 0) set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION}) message(STATUS "Configuring and building vineyard version '${VINEYARD_VERSION}'.") diff --git a/charts/vineyard-operator/Chart.yaml b/charts/vineyard-operator/Chart.yaml index cdb96320..048349e5 100644 --- a/charts/vineyard-operator/Chart.yaml +++ b/charts/vineyard-operator/Chart.yaml @@ -24,10 +24,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.10.2 +version: 0.11.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 0.10.2 +appVersion: 0.11.0 diff --git a/setup.cfg b/setup.cfg index 679b1b17..54a9d555 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.10.2 +version = 0.11.0 [pycodestyle] max_line_length = 88 diff --git a/src/common/util/config.h b/src/common/util/config.h index 8dcb1bcb..b80750ef 100644 --- a/src/common/util/config.h +++ b/src/common/util/config.h @@ -17,12 +17,12 @@ limitations under the License. #define SRC_COMMON_UTIL_CONFIG_H_ #define VINEYARD_VERSION_MAJOR 0 -#define VINEYARD_VERSION_MINOR 10 -#define VINEYARD_VERSION_PATCH 2 +#define VINEYARD_VERSION_MINOR 11 +#define VINEYARD_VERSION_PATCH 0 #define VINEYARD_VERSION \ ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \ VINEYARD_VERSION_PATCH -#define VINEYARD_VERSION_STRING "0.10.2" +#define VINEYARD_VERSION_STRING "0.11.0" #endif // SRC_COMMON_UTIL_CONFIG_H_