Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Apr 30, 2021
1 parent 76c0d8f commit 3a83ead
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.4.0
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.3.0
version: 0.4.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.3.0"
appVersion: "0.4.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.3.0"
__version_tuple__ = (0, 3, 0)
__version__ = "0.4.0"
__version_tuple__ = (0, 4, 0)

del version_file_path
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.3.0"
__version_tuple__ = (0, 3, 0)
__version__ = "0.4.0"
__version_tuple__ = (0, 4, 0)

del version_file_path
2 changes: 1 addition & 1 deletion python/jupyter/graphscope/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphscope-jupyter",
"version": "0.3.0",
"version": "0.4.0",
"description": "A GraphScope Jupyter Extension, including Graphin Widget, etc.",
"keywords": [
"jupyter",
Expand Down

0 comments on commit 3a83ead

Please sign in to comment.