From 51ae87a1531becfe403b4322fbcfe0460f31f38d Mon Sep 17 00:00:00 2001 From: Tao He Date: Fri, 9 Sep 2022 14:16:44 +0800 Subject: [PATCH] Release the version v0.8.1 for quick bugfix Signed-off-by: Tao He --- CMakeLists.txt | 2 +- charts/vineyard/Chart.yaml | 4 ++-- setup.cfg | 2 +- src/common/util/config.h | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b05d6279..54b65aa1 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 8) -set(VINEYARD_PATCH_VERSION 0) +set(VINEYARD_PATCH_VERSION 1) 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 4bba2266..49096ea7 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.8.0 +version: 0.8.1 # 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.8.0 +appVersion: 0.8.1 diff --git a/setup.cfg b/setup.cfg index 961f8bdd..5929984d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.8.0 +version = 0.8.1 [pycodestyle] max_line_length = 88 diff --git a/src/common/util/config.h b/src/common/util/config.h index 861ec1d6..5fb23253 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 8 -#define VINEYARD_VERSION_PATCH 0 +#define VINEYARD_VERSION_PATCH 1 #define VINEYARD_VERSION \ ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \ VINEYARD_VERSION_PATCH -#define VINEYARD_VERSION_STRING "0.8.0" +#define VINEYARD_VERSION_STRING "0.8.1" #endif // SRC_COMMON_UTIL_CONFIG_H_