Skip to content

Commit b5315cf

Browse files
committed
Bump up vineyard version to v0.23.0
Signed-off-by: Tao He <[email protected]>
1 parent 4548925 commit b5315cf

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cmake_minimum_required(VERSION 3.3)
22

33
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)
66
set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION})
77

88
message(STATUS "Configuring and building vineyard version '${VINEYARD_VERSION}'.")

charts/vineyard-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff 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.22.2
27+
version: 0.23.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.22.2
32+
appVersion: 0.23.0
3333

k8s/cmd/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var cmdLong = util.LongDesc(`
4848

4949
var cmd = &cobra.Command{
5050
Use: "vineyardctl [command]",
51-
Version: "v0.22.2",
51+
Version: "v0.23.0",
5252
Short: "vineyardctl is the command-line tool for interact with the Vineyard Operator.",
5353
Long: cmdLong,
5454
}

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
version = 0.22.2
2+
version = 0.23.0
33

44
[pycodestyle]
55
max_line_length = 88

src/common/util/config.h

+3-3
Original file line numberDiff line numberDiff 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 22
21-
#define VINEYARD_VERSION_PATCH 2
20+
#define VINEYARD_VERSION_MINOR 23
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.22.2"
26+
#define VINEYARD_VERSION_STRING "0.23.0"
2727

2828
#endif // SRC_COMMON_UTIL_CONFIG_H_

0 commit comments

Comments
 (0)