Skip to content

Commit

Permalink
fix pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
flaport committed Nov 12, 2024
1 parent 2156e65 commit 91ad7ca
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,6 @@ convention = "google"
"MANIFEST.in"
]

[tool.tbump]
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
'''

[[tool.tbump.file]]
src = "README.md"

Expand All @@ -80,8 +71,15 @@ src = "klujax.py"
src = "klujax.cpp"

[tool.tbump.git]
message_template = "Bump version: {old_version} → {new_version}"
message_template = "Bump to {new_version}"
tag_template = "{new_version}"

[tool.tbump.version]
current = "0.2.10"
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
'''

0 comments on commit 91ad7ca

Please sign in to comment.