From 3f538d4550d330798e2815c67808ceaf440490c1 Mon Sep 17 00:00:00 2001 From: Tao He Date: Tue, 2 Nov 2021 21:22:44 +0800 Subject: [PATCH] Bump up vineyard version to v0.3.4. Signed-off-by: Tao He --- CMakeLists.txt | 2 +- setup.cfg | 2 +- src/common/util/config.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d7ded020..8843bd3f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8) set(VINEYARD_MAJOR_VERSION 0) set(VINEYARD_MINOR_VERSION 3) -set(VINEYARD_PATCH_VERSION 3) +set(VINEYARD_PATCH_VERSION 4) set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION}) message(STATUS "Configuring and building vineyard version '${VINEYARD_VERSION}'.") diff --git a/setup.cfg b/setup.cfg index c78cd28b..1305f514 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.3.3 +version = 0.3.4 [pycodestyle] max_line_length = 120 diff --git a/src/common/util/config.h b/src/common/util/config.h index 1c4efcc7..3344c813 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 3 -#define VINEYARD_VERSION_PATCH 3 +#define VINEYARD_VERSION_PATCH 4 #define VINEYARD_VERSION \ ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \ VINEYARD_VERSION_PATCH -#define VINEYARD_VERSION_STRING "0.3.3" +#define VINEYARD_VERSION_STRING "0.3.4" #endif // SRC_COMMON_UTIL_CONFIG_H_