Skip to content

Commit

Permalink
Bump up vineyard version to v0.17.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tao He <[email protected]>
  • Loading branch information
sighingnow committed Sep 4, 2023
1 parent ac12851 commit 3d60e99
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 3.3)

set(VINEYARD_MAJOR_VERSION 0)
set(VINEYARD_MINOR_VERSION 16)
set(VINEYARD_PATCH_VERSION 5)
set(VINEYARD_MINOR_VERSION 17)
set(VINEYARD_PATCH_VERSION 0)
set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION})

message(STATUS "Configuring and building vineyard version '${VINEYARD_VERSION}'.")
Expand Down
4 changes: 2 additions & 2 deletions charts/vineyard-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.16.5
version: 0.17.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.16.5
appVersion: 0.17.0

dependencies:
- name: cert-manager
Expand Down
2 changes: 1 addition & 1 deletion k8s/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ var cmdLong = util.LongDesc(`

var cmd = &cobra.Command{
Use: "vineyardctl [command]",
Version: "v0.16.5",
Version: "v0.17.0",
Short: "vineyardctl is the command-line tool for interact with the Vineyard Operator.",
Long: cmdLong,
}
Expand Down
10 changes: 5 additions & 5 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.17.0-dev1"
version = "0.17.0"
homepage = "https://v6d.io"
repository = "https://github.com/v6d-io/v6d.git"
authors = ["Vineyard <[email protected]>"]
Expand Down Expand Up @@ -50,7 +50,7 @@ serde_json = "1.0"
spectral = "0.6"
static_str_ops = "0.1.2"

vineyard = { version = "0.17.0-dev1", path = "./vineyard" }
vineyard-datafusion = { version = "0.17.0-dev1", path = "./vineyard-datafusion" }
vineyard-polars = { version = "0.17.0-dev1", path = "./vineyard-polars" }
vineyard-integration-testing = { version = "0.17.0-dev1", path = "./vineyard-integration-testing" }
vineyard = { version = "0.17.0", path = "./vineyard" }
vineyard-datafusion = { version = "0.17.0", path = "./vineyard-datafusion" }
vineyard-polars = { version = "0.17.0", path = "./vineyard-polars" }
vineyard-integration-testing = { version = "0.17.0", path = "./vineyard-integration-testing" }
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
version = 0.16.5
version = 0.17.0

[pycodestyle]
max_line_length = 88
Expand Down
6 changes: 3 additions & 3 deletions src/common/util/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ limitations under the License.
#define SRC_COMMON_UTIL_CONFIG_H_

#define VINEYARD_VERSION_MAJOR 0
#define VINEYARD_VERSION_MINOR 16
#define VINEYARD_VERSION_PATCH 5
#define VINEYARD_VERSION_MINOR 17
#define VINEYARD_VERSION_PATCH 0

#define VINEYARD_VERSION \
((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \
VINEYARD_VERSION_PATCH
#define VINEYARD_VERSION_STRING "0.16.5"
#define VINEYARD_VERSION_STRING "0.17.0"

#endif // SRC_COMMON_UTIL_CONFIG_H_

0 comments on commit 3d60e99

Please sign in to comment.