forked from hukkin/mdformat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bumpversion.cfg
21 lines (17 loc) · 889 Bytes
/
.bumpversion.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[bumpversion]
commit = True
tag = True
tag_name = {new_version}
current_version = 0.7.19
[bumpversion:file:pyproject.toml]
search = version = "{current_version}" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
replace = version = "{new_version}" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
[bumpversion:file:src/mdformat/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:docs/users/installation_and_usage.md]
search = rev: {current_version} # Use the ref you want to point at
replace = rev: {new_version} # Use the ref you want to point at
[bumpversion:file:docs/conf.py]
search = release = '{current_version}' # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
replace = release = '{new_version}' # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT