File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ # Configuration file for bumpversion GitHub action
2+ # See https://github.com/callowayproject/bump-my-version
3+ [tool .bumpversion ]
4+ current_version = " 1.22.0"
5+ parse = " (?P<major>\\ d+)\\ .(?P<minor>\\ d+)\\ .(?P<patch>\\ d+)"
6+ serialize = [" {major}.{minor}.{patch}" ]
7+ search = " {current_version}"
8+ replace = " {new_version}"
9+ regex = false
10+ ignore_missing_version = false
11+ tag = false
12+ allow_dirty = false
13+ commit = false
14+
15+ [[tool .bumpversion .files ]]
16+ filename = " deepl/version.py"
17+
18+ [[tool .bumpversion .files ]]
19+ filename = " tests/test_general.py"
20+ search = " \" {current_version}\" == deepl.__version__"
21+ replace = " \" {new_version}\" == deepl.__version__"
22+
23+ [[tool .bumpversion .files ]]
24+ filename = " pyproject.toml"
25+ search = " name = \" deepl\"\n version = \" {current_version}\" "
26+ replace = " name = \" deepl\"\n version = \" {new_version}\" "
You can’t perform that action at this time.
0 commit comments