diff --git a/CITATION.cff b/CITATION.cff index 59d883d..f3aad76 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -3,6 +3,6 @@ message: "If you use this software, please cite it as below." title: "Event Venue Registry" authors: - name: "Charles Tapley Hoyt" -version: 0.0.1-dev +version: 0.0.1 doi: url: "https://github.com/cthoyt/evr" diff --git a/docs/source/conf.py b/docs/source/conf.py index 15c31b5..59374f4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ author = "Charles Tapley Hoyt" # The full version, including alpha/beta/rc tags. -release = "0.0.1-dev" +release = "0.0.1" # The short X.Y version. parsed_version = re.match( diff --git a/pyproject.toml b/pyproject.toml index 6ba7f9e..dc18a0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "evr" -version = "0.0.1-dev" +version = "0.0.1" description = "An open, community-driven venue of conference and event venues" readme = "README.md" authors = [ @@ -211,7 +211,7 @@ known-first-party = [ docstring-code-format = true [tool.bumpversion] -current_version = "0.0.1-dev" +current_version = "0.0.1" 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-]+)*))?" serialize = [ "{major}.{minor}.{patch}-{release}+{build}", diff --git a/src/evr/version.py b/src/evr/version.py index be228e4..b540be8 100644 --- a/src/evr/version.py +++ b/src/evr/version.py @@ -12,7 +12,7 @@ "get_version", ] -VERSION = "0.0.1-dev" +VERSION = "0.0.1" def get_git_hash() -> str: