We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6abb45e commit fc4b257Copy full SHA for fc4b257
2 files changed
.bumpversion.cfg
pyproject.toml
@@ -5,3 +5,21 @@ requires-python = ">=3.12"
5
6
[dependency-groups]
7
test = ["apsw", "pytest"]
8
+
9
+[tool.tbump]
10
+github_url = "https://github.com/benwebber/sqlite3-uuid/"
11
12
+[tool.tbump.version]
13
+current = "1.2.0"
14
+regex = '''
15
+ (?P<major>\d+)
16
+ \.(?P<minor>\d+)
17
+ \.(?P<patch>\d+)
18
+ '''
19
20
+[tool.tbump.git]
21
+message_template = "Release {new_version}"
22
+tag_template = "v{new_version}"
23
24
+[[tool.tbump.file]]
25
+src = "VERSION"
0 commit comments