Skip to content

Commit

Permalink
Release v0.5.0 (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 authored Jun 11, 2021
1 parent 29b8701 commit 8a08729
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.1
0.5.0
4 changes: 2 additions & 2 deletions analytical_engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.1)

if ("${GRAPHSCOPE_VERSION}" STREQUAL "")
set(GRAPHSCOPE_ANALYTICAL_MAJOR_VERSION 0)
set(GRAPHSCOPE_ANALYTICAL_MINOR_VERSION 4)
set(GRAPHSCOPE_ANALYTICAL_PATCH_VERSION 1)
set(GRAPHSCOPE_ANALYTICAL_MINOR_VERSION 5)
set(GRAPHSCOPE_ANALYTICAL_PATCH_VERSION 0)
set(GRAPHSCOPE_ANALYTICAL_VERSION ${GRAPHSCOPE_ANALYTICAL_MAJOR_VERSION}.${GRAPHSCOPE_ANALYTICAL_MINOR_VERSION}.${GRAPHSCOPE_ANALYTICAL_PATCH_VERSION})
else ()
set(GRAPHSCOPE_ANALYTICAL_MAJOR_VERSION ${GRAPHSCOPE_MAJOR_VERSION})
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.4.1
appVersion: 0.5.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.4.1
version: 0.5.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.4.1
version: 0.5.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.4.1"
appVersion: "0.5.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.4.1"
__version_tuple__ = (0, 4, 1)
__version__ = "0.5.0"
__version_tuple__ = (0, 5, 0)

del version_file_path
12 changes: 6 additions & 6 deletions python/graphscope/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,16 @@ class GSConfig(object):

# etcd resource configuration
k8s_etcd_num_pods = 1
k8s_etcd_cpu = 0.2
k8s_etcd_mem = "128Mi"
k8s_etcd_cpu = 1.0
k8s_etcd_mem = "512Mi"

# zookeeper resource configuration
k8s_zookeeper_cpu = 0.2
k8s_zookeeper_mem = "128Mi"
k8s_zookeeper_mem = "512Mi"

# GIE graph manager resource configuration
k8s_gie_graph_manager_cpu = 0.2
k8s_gie_graph_manager_mem = "256Mi"
k8s_gie_graph_manager_mem = "512Mi"

# GIE gremlin server resource configuration
k8s_gie_gremlin_server_cpu = 0.5
Expand All @@ -72,7 +72,7 @@ class GSConfig(object):
# vineyard resource configuration
k8s_vineyard_daemonset = "none"
k8s_vineyard_cpu = 0.2
k8s_vineyard_mem = "128Mi"
k8s_vineyard_mem = "512Mi"
vineyard_shared_mem = "4Gi"

# engine resource configuration
Expand Down Expand Up @@ -106,7 +106,7 @@ class GSConfig(object):
# GIE instance will be created automatically when a property graph loaded.
# Otherwise, you should create a GIE instance manually by `sess.gremlin` if
# `initializing_interactive_engine` is False
initializing_interactive_engine = True
initializing_interactive_engine = False

timeout_seconds = 600

Expand Down
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.4.1"
__version_tuple__ = (0, 4, 1)
__version__ = "0.5.0"
__version_tuple__ = (0, 5, 0)

del version_file_path

0 comments on commit 8a08729

Please sign in to comment.