summaryrefslogtreecommitdiff
path: root/.bumpversion.cfg
blob: ae39ec98bc0f8887e9d5afa80a3d2de0b440bcf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[bumpversion]
commit = True
tag = True
current_version = 3.124
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?)?
serialize = 
	{major}.{minor}

[bumpversion:file:kvmd/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file:PKGBUILD]
search = pkgver={current_version}
replace = pkgver={new_version}