generated from joaomcteixeira/python-project-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bumpversion.cfg
39 lines (32 loc) · 947 Bytes
/
.bumpversion.cfg
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
[bumpversion]
current_version = 0.9.0
commit = True
message =
[RELEASE] {new_version} from {current_version}
tag = True
tag_message =
version bump {current_version} -> {new_version}
[bumpversion:file:src/grafanarmadillo/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:BUILD]
search = version="{current_version}",
replace = version="{new_version}",
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"
[bumpversion:file:README.rst]
search = v{current_version}
replace = v{new_version}
[bumpversion:file:docs/rst/conf.py]
search = version = release = "{current_version}"
replace = version = release = "{new_version}"
[bumpversion:file:docs/CHANGELOG.rst]
search =
Changelog
=========
replace =
Changelog
=========
v{new_version} ({now:%Y-%m-%d})
------------------------------------------------------------