Skip to content

Commit

Permalink
Add bumpversioning
Browse files Browse the repository at this point in the history
  • Loading branch information
veghp committed Feb 26, 2025
1 parent 59939da commit 6345616
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[tool.bumpversion]
current_version = "0.1.11"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = true
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []

[[tool.bumpversion.files]]
filename = "genedom/version.py"

0 comments on commit 6345616

Please sign in to comment.