From 5e418b59f47d855a42f6c98f381564707ee3f6a1 Mon Sep 17 00:00:00 2001 From: Tao He Date: Tue, 27 Jun 2023 09:57:22 +0800 Subject: [PATCH] Bump up vineyard version to v0.15.2 Signed-off-by: Tao He --- CMakeLists.txt | 2 +- charts/vineyard-operator/Chart.yaml | 4 ++-- k8s/cmd/main.go | 2 +- python/vineyard/drivers/io/adaptors/deserializer.py | 4 ++-- setup.cfg | 2 +- src/common/util/config.h | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2da916b52e..1103d7bdd2 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 15) -set(VINEYARD_PATCH_VERSION 1) +set(VINEYARD_PATCH_VERSION 2) 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 26a40f9581..6c28197168 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.15.1 +version: 0.15.2 # 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.15.1 +appVersion: 0.15.2 dependencies: - name: cert-manager diff --git a/k8s/cmd/main.go b/k8s/cmd/main.go index a501a723d8..9a0e156083 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.15.1", + Version: "v0.15.2", Short: "vineyardctl is the command-line tool for interact with the Vineyard Operator.", Long: cmdLong, } diff --git a/python/vineyard/drivers/io/adaptors/deserializer.py b/python/vineyard/drivers/io/adaptors/deserializer.py index 376f6dedc5..b0e2d9e1d6 100644 --- a/python/vineyard/drivers/io/adaptors/deserializer.py +++ b/python/vineyard/drivers/io/adaptors/deserializer.py @@ -90,7 +90,7 @@ def copy_bytestream_to_blob(client, bs: ByteStream, blob: BlobBuilder): return blob.seal(client) -class ReconstructExecututor(BaseStreamExecutor): +class ReconstructExecutor(BaseStreamExecutor): def __init__( self, client, @@ -203,7 +203,7 @@ def deserialize( 'parallelism', multiprocessing.cpu_count() ) executor = ThreadStreamExecutor( - ReconstructExecututor, + ReconstructExecutor, parallelism=parallelism, client=client, task_queue=queue, diff --git a/setup.cfg b/setup.cfg index 539b8b7a81..67ececbbf4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.15.1 +version = 0.15.2 [pycodestyle] max_line_length = 88 diff --git a/src/common/util/config.h b/src/common/util/config.h index 2e53d78963..db61a9d160 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 15 -#define VINEYARD_VERSION_PATCH 1 +#define VINEYARD_VERSION_PATCH 2 #define VINEYARD_VERSION \ ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \ VINEYARD_VERSION_PATCH -#define VINEYARD_VERSION_STRING "0.15.1" +#define VINEYARD_VERSION_STRING "0.15.2" #endif // SRC_COMMON_UTIL_CONFIG_H_