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 1
1
cmake_minimum_required (VERSION 3.3 )
2
2
3
3
set (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 )
6
6
set (VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION} .${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION} )
7
7
8
8
message (STATUS "Configuring and building vineyard version '${VINEYARD_VERSION} '." )
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ type: application
24
24
# This is the chart version. This version number should be incremented each time you make changes
25
25
# to the chart and its templates, including the app version.
26
26
# Versions are expected to follow Semantic Versioning (https://semver.org/)
27
- version : 0.11.7
27
+ version : 0.12.0
28
28
29
29
# This is the version number of the application being deployed. This version number should be
30
30
# incremented each time you make changes to the application. Versions are not expected to
31
31
# follow Semantic Versioning. They should reflect the version the application is using.
32
- appVersion : 0.11.7
32
+ appVersion : 0.12.0
33
33
Original file line number Diff line number Diff line change 1
1
[metadata]
2
- version = 0.11.7
2
+ version = 0.12.0
3
3
4
4
[pycodestyle]
5
5
max_line_length = 88
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ limitations under the License.
17
17
#define SRC_COMMON_UTIL_CONFIG_H_
18
18
19
19
#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
22
22
23
23
#define VINEYARD_VERSION \
24
24
((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \
25
25
VINEYARD_VERSION_PATCH
26
- #define VINEYARD_VERSION_STRING "0.11.7 "
26
+ #define VINEYARD_VERSION_STRING "0.12.0 "
27
27
28
28
#endif // SRC_COMMON_UTIL_CONFIG_H_
You can’t perform that action at this time.
0 commit comments