diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d913728..0181731 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.8-dev +current_version = 0.0.8 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?P[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+(?P[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))? diff --git a/docs/source/conf.py b/docs/source/conf.py index 525ed65..c4e2bb2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ author = "Max Berrendorf" # The full version, including alpha/beta/rc tags. -release = "0.0.8-dev" +release = "0.0.8" # The short X.Y version. parsed_version = re.match( diff --git a/setup.cfg b/setup.cfg index dcba3a9..2133b10 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ ########################## [metadata] name = torch_ppr -version = 0.0.8-dev +version = 0.0.8 description = (Personalized) Page-Rank computation using PyTorch long_description = file: README.md long_description_content_type = text/markdown diff --git a/src/torch_ppr/version.py b/src/torch_ppr/version.py index 80ac9d6..af9f092 100644 --- a/src/torch_ppr/version.py +++ b/src/torch_ppr/version.py @@ -14,7 +14,7 @@ "get_git_hash", ] -VERSION = "0.0.8-dev" +VERSION = "0.0.8" def get_git_hash() -> str: