File tree 5 files changed +9
-9
lines changed
5 files changed +9
-9
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 22 )
5
- set (VINEYARD_PATCH_VERSION 2 )
4
+ set (VINEYARD_MINOR_VERSION 23 )
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.22.2
27
+ version : 0.23.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.22.2
32
+ appVersion : 0.23.0
33
33
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ var cmdLong = util.LongDesc(`
48
48
49
49
var cmd = & cobra.Command {
50
50
Use : "vineyardctl [command]" ,
51
- Version : "v0.22.2 " ,
51
+ Version : "v0.23.0 " ,
52
52
Short : "vineyardctl is the command-line tool for interact with the Vineyard Operator." ,
53
53
Long : cmdLong ,
54
54
}
Original file line number Diff line number Diff line change 1
1
[metadata]
2
- version = 0.22.2
2
+ version = 0.23.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 22
21
- #define VINEYARD_VERSION_PATCH 2
20
+ #define VINEYARD_VERSION_MINOR 23
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.22.2 "
26
+ #define VINEYARD_VERSION_STRING "0.23.0 "
27
27
28
28
#endif // SRC_COMMON_UTIL_CONFIG_H_
You can’t perform that action at this time.
0 commit comments