forked from PyGreSQL/PyGreSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bumpversion.cfg
More file actions
33 lines (26 loc) · 902 Bytes
/
.bumpversion.cfg
File metadata and controls
33 lines (26 loc) · 902 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
26
27
28
29
30
31
32
33
[bumpversion]
current_version = 5.2.4
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)(?:\.(?P<patch>\d+))?
serialize =
{major}.{minor}.{patch}
{major}.{minor}
[bumpversion:file:setup.py]
search = version = '{current_version}'
replace = version = '{new_version}'
[bumpversion:file (head):setup.py]
search = PyGreSQL version {current_version}
replace = PyGreSQL version {new_version}
[bumpversion:file:docs/conf.py]
search = version = release = '{current_version}'
replace = version = release = '{new_version}'
[bumpversion:file:docs/about.txt]
search = PyGreSQL {current_version}
replace = PyGreSQL {new_version}
[bumpversion:file:docs/announce.rst]
search = PyGreSQL version {current_version}
replace = PyGreSQL version {new_version}
[bumpversion:file (text):docs/announce.rst]
search = Release {current_version} of PyGreSQL
replace = Release {new_version} of PyGreSQL