We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8e3c33 commit 35a051cCopy full SHA for 35a051c
.bumpversion.cfg
pyproject.toml
@@ -38,6 +38,7 @@ test = [
38
]
39
dev = [
40
"pre-commit",
41
+ "bump-my-version",
42
43
44
[project.urls]
@@ -112,3 +113,18 @@ ignore = [
112
113
114
[tool.ruff.lint.mccabe]
115
max-complexity = 14
116
+
117
118
+[tool.bumpversion]
119
+current_version = "0.12.1"
120
+search = "{current_version}"
121
+replace = "{new_version}"
122
+regex = false
123
+tag = true
124
+commit = true
125
+tag_name = "{new_version}"
126
127
+[[tool.bumpversion.files]]
128
+filename = "tilebench/__init__.py"
129
+search = '__version__ = "{current_version}"'
130
+replace = '__version__ = "{new_version}"'
0 commit comments