From 735abe275676d5ede188454daa9e07d621f473f3 Mon Sep 17 00:00:00 2001 From: Tao He Date: Thu, 2 Nov 2023 13:13:36 +0800 Subject: [PATCH] Bump up vineyard version to v0.18.0 Signed-off-by: Tao He --- CMakeLists.txt | 4 ++-- charts/vineyard-operator/Chart.yaml | 4 ++-- k8s/cmd/main.go | 2 +- rust/Cargo.toml | 10 +++++----- setup.cfg | 2 +- src/common/util/config.h | 6 +++--- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cf49f722..5736cc0a 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 17) -set(VINEYARD_PATCH_VERSION 3) +set(VINEYARD_MINOR_VERSION 18) +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 fdeb235c..918e508d 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.17.3 +version: 0.18.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.17.3 +appVersion: 0.18.0 dependencies: - name: cert-manager diff --git a/k8s/cmd/main.go b/k8s/cmd/main.go index a3e4d17f..bcc84008 100644 --- a/k8s/cmd/main.go +++ b/k8s/cmd/main.go @@ -48,7 +48,7 @@ var cmdLong = util.LongDesc(` var cmd = &cobra.Command{ Use: "vineyardctl [command]", - Version: "v0.17.3", + Version: "v0.18.0", Short: "vineyardctl is the command-line tool for interact with the Vineyard Operator.", Long: cmdLong, } diff --git a/rust/Cargo.toml b/rust/Cargo.toml index caef8173..4a3c4e8f 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -8,7 +8,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.17.2" +version = "0.18.0" homepage = "https://v6d.io" repository = "https://github.com/v6d-io/v6d.git" authors = ["Vineyard "] @@ -50,7 +50,7 @@ serde_json = "1.0" spectral = "0.6" static_str_ops = "0.1.2" -vineyard = { version = "0.17.2", path = "./vineyard" } -vineyard-datafusion = { version = "0.17.2", path = "./vineyard-datafusion" } -vineyard-polars = { version = "0.17.2", path = "./vineyard-polars" } -vineyard-integration-testing = { version = "0.17.2", path = "./vineyard-integration-testing" } +vineyard = { version = "0.18.0", path = "./vineyard" } +vineyard-datafusion = { version = "0.18.0", path = "./vineyard-datafusion" } +vineyard-polars = { version = "0.18.0", path = "./vineyard-polars" } +vineyard-integration-testing = { version = "0.18.0", path = "./vineyard-integration-testing" } diff --git a/setup.cfg b/setup.cfg index a8d9d79f..0c86d19a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.17.3 +version = 0.18.0 [pycodestyle] max_line_length = 88 diff --git a/src/common/util/config.h b/src/common/util/config.h index 66723fb8..67f8fc9f 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 17 -#define VINEYARD_VERSION_PATCH 3 +#define VINEYARD_VERSION_MINOR 18 +#define VINEYARD_VERSION_PATCH 0 #define VINEYARD_VERSION \ ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \ VINEYARD_VERSION_PATCH -#define VINEYARD_VERSION_STRING "0.17.3" +#define VINEYARD_VERSION_STRING "0.18.0" #endif // SRC_COMMON_UTIL_CONFIG_H_