File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.3)
22
33set (VINEYARD_MAJOR_VERSION 0)
4- set (VINEYARD_MINOR_VERSION 11 )
5- set (VINEYARD_PATCH_VERSION 7 )
4+ set (VINEYARD_MINOR_VERSION 12 )
5+ set (VINEYARD_PATCH_VERSION 0 )
66set (VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION} .${VINEYARD_MINOR_VERSION} .${VINEYARD_PATCH_VERSION} )
77
88message (STATUS "Configuring and building vineyard version '${VINEYARD_VERSION} '." )
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ type: application
2424# This is the chart version. This version number should be incremented each time you make changes
2525# to the chart and its templates, including the app version.
2626# Versions are expected to follow Semantic Versioning (https://semver.org/)
27- version : 0.11.7
27+ version : 0.12.0
2828
2929# This is the version number of the application being deployed. This version number should be
3030# incremented each time you make changes to the application. Versions are not expected to
3131# follow Semantic Versioning. They should reflect the version the application is using.
32- appVersion : 0.11.7
32+ appVersion : 0.12.0
3333
Original file line number Diff line number Diff line change 11[metadata]
2- version = 0.11.7
2+ version = 0.12.0
33
44[pycodestyle]
55max_line_length = 88
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ limitations under the License.
1717#define SRC_COMMON_UTIL_CONFIG_H_
1818
1919#define VINEYARD_VERSION_MAJOR 0
20- #define VINEYARD_VERSION_MINOR 11
21- #define VINEYARD_VERSION_PATCH 7
20+ #define VINEYARD_VERSION_MINOR 12
21+ #define VINEYARD_VERSION_PATCH 0
2222
2323#define VINEYARD_VERSION \
2424 ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \
2525 VINEYARD_VERSION_PATCH
26- #define VINEYARD_VERSION_STRING "0.11.7 "
26+ #define VINEYARD_VERSION_STRING "0.12.0 "
2727
2828#endif // SRC_COMMON_UTIL_CONFIG_H_
You can’t perform that action at this time.
0 commit comments