From c6fa3bfebea382e7eefd952e46400743381b263b Mon Sep 17 00:00:00 2001 From: lidongze0629 <9546726@qq.com> Date: Thu, 4 Nov 2021 01:47:37 +0800 Subject: [PATCH] Release v0.8.0 --- VERSION | 2 +- analytical_engine/CMakeLists.txt | 2 +- charts/graphscope-store/Chart.yaml | 4 ++-- charts/graphscope/Chart.yaml | 4 ++-- coordinator/gscoordinator/version.py | 4 ++-- python/graphscope/version.py | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/VERSION b/VERSION index faef31a4357c..a3df0a6959e1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.0 +0.8.0 diff --git a/analytical_engine/CMakeLists.txt b/analytical_engine/CMakeLists.txt index 6e1a5d844af1..23be5c72ad56 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 7) + set(GRAPHSCOPE_ANALYTICAL_MINOR_VERSION 8) 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 84193b9bf5ca..fceb948e4f26 100644 --- a/charts/graphscope-store/Chart.yaml +++ b/charts/graphscope-store/Chart.yaml @@ -1,7 +1,7 @@ annotations: category: Database apiVersion: v2 -appVersion: 0.7.0 +appVersion: 0.8.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.7.0 +version: 0.8.0 dependencies: - condition: kafka.enabled diff --git a/charts/graphscope/Chart.yaml b/charts/graphscope/Chart.yaml index dbd1c3c65270..1d66077de7e9 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.7.0 +version: 0.8.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.7.0" +appVersion: "0.8.0" diff --git a/coordinator/gscoordinator/version.py b/coordinator/gscoordinator/version.py index 6d252913b0a7..bb2710728e8d 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.7.0" - __version_tuple__ = (0, 7, 0) + __version__ = "0.8.0" + __version_tuple__ = (0, 8, 0) del version_file_path diff --git a/python/graphscope/version.py b/python/graphscope/version.py index 6d252913b0a7..bb2710728e8d 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.7.0" - __version_tuple__ = (0, 7, 0) + __version__ = "0.8.0" + __version_tuple__ = (0, 8, 0) del version_file_path