Skip to content

Commit

Permalink
Update version format to include 'v' prefix in __init__.py and pyproj…
Browse files Browse the repository at this point in the history
…ect.toml
  • Loading branch information
mogres committed Jan 16, 2025
1 parent 9882768 commit f9e3aaf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cellpack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__email__ = "[email protected]"
# Do not edit this string manually, always use bumpversion
# Details in CONTRIBUTING.md
__version__ = "1.1.1"
__version__ = "v1.1.1"

from .autopack.loaders.recipe_loader import RecipeLoader # noqa: F401

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "cellpack"
version = "1.1.1"
version = "v1.1.1"
description = "algorithm to pack molecular recipes"
keywords = ["cellpack"]
readme = "README.md"
Expand Down Expand Up @@ -122,8 +122,8 @@ commands = [
]

[tool.bumpver]
current_version = "1.1.1"
version_pattern = "MAJOR.MINOR.PATCH"
current_version = "v1.1.1"
version_pattern = "vMAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
tag_message = "{new_version}"
tag_scope = "default"
Expand Down

0 comments on commit f9e3aaf

Please sign in to comment.