From bc946ae6a01c5663a4490046f83a9da5992229db Mon Sep 17 00:00:00 2001 From: Tao He Date: Thu, 8 Sep 2022 15:46:19 +0800 Subject: [PATCH] Bump up version to v0.8.0 Signed-off-by: Tao He --- CMakeLists.txt | 4 ++-- charts/vineyard/Chart.yaml | 4 ++-- setup.cfg | 2 +- src/common/util/config.h | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 91ee8cc1..b05d6279 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 7) -set(VINEYARD_PATCH_VERSION 2) +set(VINEYARD_MINOR_VERSION 8) +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/Chart.yaml b/charts/vineyard/Chart.yaml index 821c8df1..4bba2266 100644 --- a/charts/vineyard/Chart.yaml +++ b/charts/vineyard/Chart.yaml @@ -30,10 +30,10 @@ 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.7.2 +version: 0.8.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.7.2 +appVersion: 0.8.0 diff --git a/setup.cfg b/setup.cfg index f7ba3f74..961f8bdd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.7.2 +version = 0.8.0 [pycodestyle] max_line_length = 88 diff --git a/src/common/util/config.h b/src/common/util/config.h index d75f6f15..861ec1d6 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 7 -#define VINEYARD_VERSION_PATCH 2 +#define VINEYARD_VERSION_MINOR 8 +#define VINEYARD_VERSION_PATCH 0 #define VINEYARD_VERSION \ ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \ VINEYARD_VERSION_PATCH -#define VINEYARD_VERSION_STRING "0.7.2" +#define VINEYARD_VERSION_STRING "0.8.0" #endif // SRC_COMMON_UTIL_CONFIG_H_