Skip to content

Commit

Permalink
Fix version to conform to semver (#1053)
Browse files Browse the repository at this point in the history
*Issue #, if available:*

*Description of changes:*

* `0.4` is not a valid semver version, changing to `0.4.0`. See
https://semver.org/ and examples here: https://regex101.com/r/Ly7O1x/3/

By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice.
  • Loading branch information
thvasilo authored Oct 1, 2024
1 parent e21e040 commit 7732b26
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion graphstorm-processing/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "graphstorm_processing"
version = "0.4"
version = "0.4.0"
description = "Distributed graph pre-processing for GraphStorm"
readme = "README.md"
packages = [{include = "graphstorm_processing"}]
Expand Down
2 changes: 1 addition & 1 deletion python/graphstorm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Graphstorm package.
"""
__version__ = "0.4"
__version__ = "0.4.0"

from . import gsf
from . import utils
Expand Down

0 comments on commit 7732b26

Please sign in to comment.