forked from ansible/galaxy_ng
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
33 lines (28 loc) · 772 Bytes
/
setup.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
[bumpversion]
current_version = 4.10.0dev
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+))?((?P<build>\d+))?
serialize =
{major}.{minor}.{patch}{release}{build}
{major}.{minor}.{patch}{release}
{major}.{minor}.{patch}
[bumpversion:part:release]
optional_value = stable
first_value = stable
values =
stable
dev
a
b
[bumpversion:part:build]
first_value = 0
[bumpversion:file:setup.py]
search = version = "{current_version}"
replace = version = "{new_version}"
[bumpversion:file:./galaxy_ng/app/__init__.py]
search = version = "{current_version}"
replace = version = "{new_version}"
[bumpversion:file:./galaxy_ng/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"