-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.bumpversion.toml
More file actions
25 lines (25 loc) · 841 Bytes
/
.bumpversion.toml
File metadata and controls
25 lines (25 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[tool.bumpversion]
current_version = "0.1.4"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = false
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = false
message = "Bump version: {current_version} → {new_version}"
moveable_tags = []
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []
files = [
{ filename = "pyproject.toml", search = 'version = "{current_version}"', replace = 'version = "{new_version}"' },
]
"ttyd_cli/__init__.py" = { search = '__version__ = "{current_version}"', replace = '__version__ = "{new_version}"'}