-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.bumpversion.toml
47 lines (43 loc) Β· 1.33 KB
/
.bumpversion.toml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.bumpversion]
current_version = "3.4.0"
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 = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} β {new_version}"
allow_dirty = true
commit = true
message = "Bump version: {current_version} β {new_version}"
commit_args = "y"
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []
[[tool.bumpversion.files]]
filename = "README.md"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "Version: {current_version}"
replace = "Version: {new_version}"
[[tool.bumpversion.files]]
filename = "README.md"
search = "Date: \\d{{4}}-\\d{{2}}-\\d{{2}}"
replace = "Date: {now:%Y-%m-%d}"
regex = true
[[tool.bumpversion.files]]
filename = "rinexmod/__init__.py"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
[[tool.bumpversion.files]]
filename = "setup.py"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"