Skip to content

Commit

Permalink
Upgrade vineyard version to v0.2.8.
Browse files Browse the repository at this point in the history
Signed-off-by: Tao He <[email protected]>
  • Loading branch information
sighingnow committed Sep 6, 2021
1 parent 94c5e54 commit 514b7ef
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8)

set(VINEYARD_MAJOR_VERSION 0)
set(VINEYARD_MINOR_VERSION 2)
set(VINEYARD_PATCH_VERSION 7)
set(VINEYARD_PATCH_VERSION 8)
set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION})

message(STATUS "Configuring and building vineyard version '${VINEYARD_VERSION}'.")
Expand Down
5 changes: 2 additions & 3 deletions charts/vineyard/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,9 @@ 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.2.7
version: 0.2.8

# 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.2.7

appVersion: 0.2.8
2 changes: 1 addition & 1 deletion python/vineyard/contrib/airflow/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Requirements
The following packages are needed to run Airflow on Vineyard,

- airflow >= 2.1.0
- vineyard >= 0.2.7
- vineyard >= 0.2.8

Configuration and Usage
-----------------------
Expand Down
5 changes: 5 additions & 0 deletions python/vineyard/deploy/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ def start_vineyardd(etcd_endpoints=None,
The port that vineyard will use to privode RPC service.
debug: bool
Whether print debug logs.
Returns:
(proc, socket):
Yields a tuple with the subprocess as the first element and the UNIX-domain
IPC socket as the second element.
'''

if not vineyardd_path:
Expand Down
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.2.7
version = 0.2.8

[pycodestyle]
max_line_length = 120
Expand Down
4 changes: 2 additions & 2 deletions src/common/util/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ limitations under the License.

#define VINEYARD_VERSION_MAJOR 0
#define VINEYARD_VERSION_MINOR 2
#define VINEYARD_VERSION_PATCH 7
#define VINEYARD_VERSION_PATCH 8

#define VINEYARD_VERSION \
((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \
VINEYARD_VERSION_PATCH
#define VINEYARD_VERSION_STRING "0.2.7"
#define VINEYARD_VERSION_STRING "0.2.8"

#endif // SRC_COMMON_UTIL_CONFIG_H_

0 comments on commit 514b7ef

Please sign in to comment.