Skip to content

Commit

Permalink
Bump version: 0.0.1-dev → 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt committed Dec 15, 2024
1 parent 652487b commit d535791
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down Expand Up @@ -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<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-]+)*))?"
serialize = [
"{major}.{minor}.{patch}-{release}+{build}",
Expand Down
2 changes: 1 addition & 1 deletion src/evr/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"get_version",
]

VERSION = "0.0.1-dev"
VERSION = "0.0.1"


def get_git_hash() -> str:
Expand Down

0 comments on commit d535791

Please sign in to comment.