Skip to content

Commit 39151f9

Browse files
committed
Tbump
1 parent 37470e2 commit 39151f9

File tree

3 files changed

+124
-31
lines changed

3 files changed

+124
-31
lines changed

.bumpversion.cfg

Lines changed: 0 additions & 15 deletions
This file was deleted.

poetry.lock

Lines changed: 100 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,29 @@ ignore_missing_imports = true
2828
module = "rfc3339_validator"
2929
ignore_missing_imports = true
3030

31+
[tool.tbump]
32+
github_url = "https://github.com/python-openapi/openapi-schema-validator"
33+
34+
[tool.tbump.version]
35+
current = "0.6.3"
36+
regex = '''
37+
(?P<major>\d+)
38+
\.
39+
(?P<minor>\d+)
40+
\.
41+
(?P<patch>\d+)
42+
'''
43+
44+
[tool.tbump.git]
45+
message_template = "Version {new_version}"
46+
tag_template = "{new_version}"
47+
48+
[[tool.tbump.file]]
49+
src = "openapi_schema_validator/__init__.py"
50+
51+
[[tool.tbump.file]]
52+
src = "pyproject.toml"
53+
3154
[tool.poetry]
3255
name = "openapi-schema-validator"
3356
version = "0.6.3"
@@ -74,7 +97,7 @@ pytest-cov = "*"
7497
mypy = "^1.14"
7598
flynt = "^1.0"
7699
deptry = ">=0.16.2,<0.25.0"
77-
bump2version = "^1.0.1"
100+
tbump = "^6.11.0"
78101

79102
[tool.poetry.group.docs.dependencies]
80103
sphinx = ">=5.3,<8.0"

0 commit comments

Comments
 (0)