From 6bc3c307c3ff81b5ad58b1ccec5c68339e7fc29b Mon Sep 17 00:00:00 2001 From: Tao He Date: Wed, 17 Jan 2024 16:50:50 +0800 Subject: [PATCH] Bump up vineyard version to v0.20.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 f04feacb..defa8a5e 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 19) -set(VINEYARD_PATCH_VERSION 3) +set(VINEYARD_MINOR_VERSION 20) +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 3b5855d5..ce824bc8 100644 --- a/charts/vineyard-operator/Chart.yaml +++ b/charts/vineyard-operator/Chart.yaml @@ -24,9 +24,9 @@ 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.19.3 +version: 0.20.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.19.3 +appVersion: 0.20.0 diff --git a/setup.cfg b/setup.cfg index 5a18d85d..71e68f9d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.19.3 +version = 0.20.0 [pycodestyle] max_line_length = 88 diff --git a/src/common/util/config.h b/src/common/util/config.h index 4a75530a..f867156a 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 19 -#define VINEYARD_VERSION_PATCH 3 +#define VINEYARD_VERSION_MINOR 20 +#define VINEYARD_VERSION_PATCH 0 #define VINEYARD_VERSION \ ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \ VINEYARD_VERSION_PATCH -#define VINEYARD_VERSION_STRING "0.19.3" +#define VINEYARD_VERSION_STRING "0.20.0" #endif // SRC_COMMON_UTIL_CONFIG_H_