From ba75acc1567b447d43730cdf96d1c69cc23da54f Mon Sep 17 00:00:00 2001 From: Tao He Date: Thu, 13 Apr 2023 18:51:18 +0800 Subject: [PATCH] Bump up vineyard version to v0.14.0 Signed-off-by: Tao He --- CMakeLists.txt | 4 ++-- charts/vineyard-operator/Chart.yaml | 6 +++--- setup.cfg | 2 +- src/common/util/config.h | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ff0efcd9..02ff22cb 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 13) -set(VINEYARD_PATCH_VERSION 4) +set(VINEYARD_MINOR_VERSION 14) +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 1b4265d3..1de90bb0 100644 --- a/charts/vineyard-operator/Chart.yaml +++ b/charts/vineyard-operator/Chart.yaml @@ -24,15 +24,15 @@ 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.13.4 +version: 0.14.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.13.4 +appVersion: 0.14.0 dependencies: - name: cert-manager repository: https://charts.jetstack.io version: v1.9.1 - condition: cert-manager.enabled \ No newline at end of file + condition: cert-manager.enabled diff --git a/setup.cfg b/setup.cfg index 11642ad1..d710e370 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.13.4 +version = 0.14.0 [pycodestyle] max_line_length = 88 diff --git a/src/common/util/config.h b/src/common/util/config.h index c64e5ecf..58353681 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 13 -#define VINEYARD_VERSION_PATCH 4 +#define VINEYARD_VERSION_MINOR 14 +#define VINEYARD_VERSION_PATCH 0 #define VINEYARD_VERSION \ ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \ VINEYARD_VERSION_PATCH -#define VINEYARD_VERSION_STRING "0.13.4" +#define VINEYARD_VERSION_STRING "0.14.0" #endif // SRC_COMMON_UTIL_CONFIG_H_