diff --git a/VERSION b/VERSION index a918a2aa18d5..faef31a4357c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.0 +0.7.0 diff --git a/analytical_engine/CMakeLists.txt b/analytical_engine/CMakeLists.txt index 2a69e8d0c824..ef21fadb5de6 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 6) + set(GRAPHSCOPE_ANALYTICAL_MINOR_VERSION 7) 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 c0238bede5e6..84193b9bf5ca 100644 --- a/charts/graphscope-store/Chart.yaml +++ b/charts/graphscope-store/Chart.yaml @@ -1,7 +1,7 @@ annotations: category: Database apiVersion: v2 -appVersion: 0.6.0 +appVersion: 0.7.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.6.0 +version: 0.7.0 dependencies: - condition: kafka.enabled diff --git a/charts/graphscope/Chart.yaml b/charts/graphscope/Chart.yaml index 923ec81fc2f8..dbd1c3c65270 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.6.0 +version: 0.7.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.6.0" +appVersion: "0.7.0" diff --git a/coordinator/gscoordinator/version.py b/coordinator/gscoordinator/version.py index 8d444867ed90..6d252913b0a7 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.6.0" - __version_tuple__ = (0, 6, 0) + __version__ = "0.7.0" + __version_tuple__ = (0, 7, 0) del version_file_path diff --git a/python/graphscope/version.py b/python/graphscope/version.py index 8d444867ed90..6d252913b0a7 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.6.0" - __version_tuple__ = (0, 6, 0) + __version__ = "0.7.0" + __version_tuple__ = (0, 7, 0) del version_file_path