diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d065669..d7b6aaf6 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 19) -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-operator/Chart.yaml b/charts/vineyard-operator/Chart.yaml index 22f63606..6382a80f 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.18.3 +version: 0.19.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.18.3 +appVersion: 0.19.1 dependencies: - name: cert-manager diff --git a/k8s/cmd/main.go b/k8s/cmd/main.go index 0c5bed72..85c3aa09 100644 --- a/k8s/cmd/main.go +++ b/k8s/cmd/main.go @@ -48,7 +48,7 @@ var cmdLong = util.LongDesc(` var cmd = &cobra.Command{ Use: "vineyardctl [command]", - Version: "v0.19.0", + Version: "v0.19.1", Short: "vineyardctl is the command-line tool for interact with the Vineyard Operator.", Long: cmdLong, } diff --git a/setup.cfg b/setup.cfg index 4db08c1e..010603dd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.19.0 +version = 0.19.1 [pycodestyle] max_line_length = 88 diff --git a/src/common/memory/memcpy.h b/src/common/memory/memcpy.h index 9988e22d..b6e69336 100644 --- a/src/common/memory/memcpy.h +++ b/src/common/memory/memcpy.h @@ -21,6 +21,7 @@ #include #include #include +#include #include #include diff --git a/src/common/util/config.h b/src/common/util/config.h index 3c9c832e..f5532bef 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 19 -#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.19.0" +#define VINEYARD_VERSION_STRING "0.19.1" #endif // SRC_COMMON_UTIL_CONFIG_H_