From b2a81047538bcc02957bca22cb20bd773db6d4da Mon Sep 17 00:00:00 2001 From: Tao He Date: Tue, 23 May 2023 15:57:15 +0800 Subject: [PATCH] Bump up vineyard version to v0.14.6 Signed-off-by: Tao He --- CMakeLists.txt | 2 +- charts/vineyard-operator/Chart.yaml | 4 ++-- k8s/cmd/main.go | 2 +- modules/graph/thirdparty/GraphAr | 2 +- setup.cfg | 2 +- src/common/util/config.h | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7c96c94e..1c1948bd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.3) set(VINEYARD_MAJOR_VERSION 0) set(VINEYARD_MINOR_VERSION 14) -set(VINEYARD_PATCH_VERSION 5) +set(VINEYARD_PATCH_VERSION 6) 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 3e6f6ebf..bcce3814 100644 --- a/charts/vineyard-operator/Chart.yaml +++ b/charts/vineyard-operator/Chart.yaml @@ -24,12 +24,12 @@ 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.14.5 +version: 0.14.6 # 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.14.5 +appVersion: 0.14.6 dependencies: - name: cert-manager diff --git a/k8s/cmd/main.go b/k8s/cmd/main.go index cbc2fe0e..a06d6b21 100644 --- a/k8s/cmd/main.go +++ b/k8s/cmd/main.go @@ -45,7 +45,7 @@ var cmdLong = util.LongDesc(` var cmd = &cobra.Command{ Use: "vineyardctl [command]", - Version: "v0.14.5", + Version: "v0.14.6", Short: "vineyardctl is the command-line tool for interact with the Vineyard Operator.", Long: cmdLong, } diff --git a/modules/graph/thirdparty/GraphAr b/modules/graph/thirdparty/GraphAr index b519b744..a17b42db 160000 --- a/modules/graph/thirdparty/GraphAr +++ b/modules/graph/thirdparty/GraphAr @@ -1 +1 @@ -Subproject commit b519b744a0569f1d9d925f869b4d57d93070f50b +Subproject commit a17b42db8edb902e4105f991baad95544acc2e61 diff --git a/setup.cfg b/setup.cfg index 12375bbd..0ff2375d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.14.5 +version = 0.14.6 [pycodestyle] max_line_length = 88 diff --git a/src/common/util/config.h b/src/common/util/config.h index 3294c21c..5c73eafd 100644 --- a/src/common/util/config.h +++ b/src/common/util/config.h @@ -18,11 +18,11 @@ limitations under the License. #define VINEYARD_VERSION_MAJOR 0 #define VINEYARD_VERSION_MINOR 14 -#define VINEYARD_VERSION_PATCH 5 +#define VINEYARD_VERSION_PATCH 6 #define VINEYARD_VERSION \ ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \ VINEYARD_VERSION_PATCH -#define VINEYARD_VERSION_STRING "0.14.5" +#define VINEYARD_VERSION_STRING "0.14.6" #endif // SRC_COMMON_UTIL_CONFIG_H_