File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.3)
2
2
3
3
set (VINEYARD_MAJOR_VERSION 0 )
4
4
set (VINEYARD_MINOR_VERSION 24 )
5
- set (VINEYARD_PATCH_VERSION 1 )
5
+ set (VINEYARD_PATCH_VERSION 2 )
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.24.1
27
+ version : 0.24.2
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.24.1
32
+ appVersion : 0.24.2
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.24.1 " ,
51
+ Version : "v0.24.2 " ,
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.24.1
2
+ version = 0.24.2
3
3
4
4
[pycodestyle]
5
5
max_line_length = 88
Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ limitations under the License.
18
18
19
19
#define VINEYARD_VERSION_MAJOR 0
20
20
#define VINEYARD_VERSION_MINOR 24
21
- #define VINEYARD_VERSION_PATCH 1
21
+ #define VINEYARD_VERSION_PATCH 2
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.24.1 "
26
+ #define VINEYARD_VERSION_STRING "0.24.2 "
27
27
28
28
#endif // SRC_COMMON_UTIL_CONFIG_H_
You can’t perform that action at this time.
0 commit comments