From 3eceab70dced8cb8d572b6d2000ea1428273fd8e Mon Sep 17 00:00:00 2001 From: Tao He Date: Mon, 24 Apr 2023 19:45:32 +0800 Subject: [PATCH] Bump up vineyard version to v0.14.2 Signed-off-by: Tao He --- CMakeLists.txt | 2 +- k8s/cmd/main.go | 2 +- setup.cfg | 2 +- src/common/util/config.h | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 86018378..ca58423f 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 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/k8s/cmd/main.go b/k8s/cmd/main.go index d408ea2d..f47979f5 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.1", + Version: "v0.14.2", Short: "vineyardctl is the command-line tool for interact with the Vineyard Operator.", Long: cmdLong, } diff --git a/setup.cfg b/setup.cfg index 6f8d052f..274d64bf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.14.1 +version = 0.14.2 [pycodestyle] max_line_length = 88 diff --git a/src/common/util/config.h b/src/common/util/config.h index 4288f533..e3bffb9c 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 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.14.1" +#define VINEYARD_VERSION_STRING "0.14.2" #endif // SRC_COMMON_UTIL_CONFIG_H_