Skip to content

Commit 42b1bcd

Browse files
committed
chore: add bumver tooling
1 parent 2287678 commit 42b1bcd

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pyproject.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,25 @@ dev = ["bumpver", "pip-tools", "pytest"]
2727

2828
[project.urls]
2929
Homepage = "https://github.com/boldrack/tablebin-python"
30+
31+
[tool.bumpver]
32+
current_version = "2024.1001-alpha"
33+
version_pattern = "YYYY.BUILD[-TAG]"
34+
commit_message = "bump version {old_version} -> {new_version}"
35+
tag_message = "{new_version}"
36+
tag_scope = "default"
37+
pre_commit_hook = ""
38+
post_commit_hook = ""
39+
commit = true
40+
tag = true
41+
push = true
42+
43+
[tool.bumpver.file_patterns]
44+
"pyproject.toml" = [
45+
'current_version = "{version}"',
46+
]
47+
"README.md" = [
48+
"{version}",
49+
"{pep440_version}",
50+
]
51+

0 commit comments

Comments
 (0)