Skip to content

Commit

Permalink
Release v0.9.0 (#1109)
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Dec 3, 2021
1 parent 00b8ee6 commit f4db75e
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.0
0.9.0
2 changes: 1 addition & 1 deletion analytical_engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.1)

if ("${GRAPHSCOPE_VERSION}" STREQUAL "")
set(GRAPHSCOPE_ANALYTICAL_MAJOR_VERSION 0)
set(GRAPHSCOPE_ANALYTICAL_MINOR_VERSION 8)
set(GRAPHSCOPE_ANALYTICAL_MINOR_VERSION 9)
set(GRAPHSCOPE_ANALYTICAL_PATCH_VERSION 0)
set(GRAPHSCOPE_ANALYTICAL_VERSION ${GRAPHSCOPE_ANALYTICAL_MAJOR_VERSION}.${GRAPHSCOPE_ANALYTICAL_MINOR_VERSION}.${GRAPHSCOPE_ANALYTICAL_PATCH_VERSION})
else ()
Expand Down
4 changes: 2 additions & 2 deletions charts/graphscope-store/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
annotations:
category: Database
apiVersion: v2
appVersion: 0.8.0
appVersion: 0.9.0
description: Chart to create a GraphScope Store cluster
home: https://graphscope.io
keywords:
Expand All @@ -11,7 +11,7 @@ keywords:
name: graphscope-store
sources:
- https://github.com/alibaba/GraphScope/tree/main/interactive_engine/src/v2/src/main
version: 0.8.0
version: 0.9.0

dependencies:
- condition: kafka.enabled
Expand Down
4 changes: 2 additions & 2 deletions charts/graphscope/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ 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.8.0
version: 0.9.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.
# It is recommended to use it with quotes.
appVersion: "0.8.0"
appVersion: "0.9.0"
4 changes: 2 additions & 2 deletions coordinator/gscoordinator/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
__version__ = fp.read().strip()
__version_tuple__ = (int(v) for v in __version__.split("."))
else:
__version__ = "0.8.0"
__version_tuple__ = (0, 8, 0)
__version__ = "0.9.0"
__version_tuple__ = (0, 9, 0)

del version_file_path
6 changes: 3 additions & 3 deletions coordinator/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake>=3.21.2
etcd-distro>=3.5.1
graphscope-client==0.8.0
graphscope-client>=0.8.0
grpcio
kubernetes
protobuf
PyYAML
vineyard>=0.3.8
vineyard-io>=0.3.8
vineyard>=0.3.12
vineyard-io>=0.3.12
2 changes: 1 addition & 1 deletion k8s/jupyter.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ WORKDIR /home/graphscope
ENV PATH=${PATH}:/home/graphscope/.local/bin

RUN python3 -m pip install --upgrade pip --user
RUN python3 -m pip install jupyterlab graphscope-client==0.8.0 --user
RUN python3 -m pip install jupyterlab graphscope-client==0.9.0 --user

CMD ["jupyter", "lab", "--port=8888", "--no-browser", "--ip=0.0.0.0"]
4 changes: 2 additions & 2 deletions python/graphscope/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
__version__ = fp.read().strip()
__version_tuple__ = (int(v) for v in __version__.split("."))
else:
__version__ = "0.8.0"
__version_tuple__ = (0, 8, 0)
__version__ = "0.9.0"
__version_tuple__ = (0, 9, 0)

del version_file_path
4 changes: 2 additions & 2 deletions python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ psutil
PyYAML
scipy
tqdm
vineyard>=0.3.8; sys_platform != "win32" and platform_machine == 'x86_64'
vineyard-io>=0.3.8; sys_platform != "win32" and platform_machine == 'x86_64'
vineyard>=0.3.12; sys_platform != "win32" and platform_machine == 'x86_64'
vineyard-io>=0.3.12; sys_platform != "win32" and platform_machine == 'x86_64'

0 comments on commit f4db75e

Please sign in to comment.