diff --git a/VERSION b/VERSION index a3df0a6959e1..ac39a106c485 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.0 +0.9.0 diff --git a/analytical_engine/CMakeLists.txt b/analytical_engine/CMakeLists.txt index 8e2a2e4e1fe3..ea50a1808e07 100644 --- a/analytical_engine/CMakeLists.txt +++ b/analytical_engine/CMakeLists.txt @@ -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 () diff --git a/charts/graphscope-store/Chart.yaml b/charts/graphscope-store/Chart.yaml index fceb948e4f26..a824cb9cbf4e 100644 --- a/charts/graphscope-store/Chart.yaml +++ b/charts/graphscope-store/Chart.yaml @@ -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: @@ -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 diff --git a/charts/graphscope/Chart.yaml b/charts/graphscope/Chart.yaml index 1d66077de7e9..bd9dedfa8c41 100644 --- a/charts/graphscope/Chart.yaml +++ b/charts/graphscope/Chart.yaml @@ -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" diff --git a/coordinator/gscoordinator/version.py b/coordinator/gscoordinator/version.py index bb2710728e8d..8311ff539625 100644 --- a/coordinator/gscoordinator/version.py +++ b/coordinator/gscoordinator/version.py @@ -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 diff --git a/coordinator/requirements.txt b/coordinator/requirements.txt index 1d84870830b2..4b9de801631a 100644 --- a/coordinator/requirements.txt +++ b/coordinator/requirements.txt @@ -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 diff --git a/k8s/jupyter.Dockerfile b/k8s/jupyter.Dockerfile index 6213d35bad12..76a38f729df5 100644 --- a/k8s/jupyter.Dockerfile +++ b/k8s/jupyter.Dockerfile @@ -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"] diff --git a/python/graphscope/version.py b/python/graphscope/version.py index bb2710728e8d..8311ff539625 100644 --- a/python/graphscope/version.py +++ b/python/graphscope/version.py @@ -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 diff --git a/python/requirements.txt b/python/requirements.txt index 67c745c820bd..d8136f102425 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -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'