Skip to content

Commit ad2259c

Browse files
committed
Bump version: 0.7.0-dev → 0.7.0
1 parent 75ce00b commit ad2259c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
author = "Charles Tapley Hoyt"
2727

2828
# The full version, including alpha/beta/rc tags.
29-
release = "0.7.0-dev"
29+
release = "0.7.0"
3030

3131
# The short X.Y version.
3232
parsed_version = re.match(

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "uv"
66

77
[project]
88
name = "bioversions"
9-
version = "0.7.0-dev"
9+
version = "0.7.0"
1010
description = "Get the current version for biological databases"
1111
readme = "README.md"
1212
authors = [
@@ -214,7 +214,7 @@ known-first-party = [
214214
docstring-code-format = true
215215

216216
[tool.bumpversion]
217-
current_version = "0.7.0-dev"
217+
current_version = "0.7.0"
218218
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(?:-(?P<release>[0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?(?:\\+(?P<build>[0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?"
219219
serialize = [
220220
"{major}.{minor}.{patch}-{release}+{build}",

src/bioversions/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"VERSION",
88
]
99

10-
VERSION = "0.7.0-dev"
10+
VERSION = "0.7.0"
1111

1212

1313
def get_git_hash() -> str:

0 commit comments

Comments
 (0)