-
Notifications
You must be signed in to change notification settings - Fork 6
/
.bumpversion.cfg
50 lines (40 loc) · 1.82 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
[bumpversion]
current_version = 2.6.0
commit = True
tag = False
tag_name = {new_version}
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) (?P<releaseTime>.*)?
serialize =
{major}.{minor}.{patch}
{utcnow:%Y-%m-%dT%H:%M:%SZ}
[bumpversion:file:CHANGES.md]
search =
[Unreleased](https://github.com/bird-house/birdhouse-deploy/tree/master) (latest)
------------------------------------------------------------------------------------------------------------------
replace =
[Unreleased](https://github.com/bird-house/birdhouse-deploy/tree/master) (latest)
------------------------------------------------------------------------------------------------------------------
[//]: # (list changes here, using '-' for each new entry, remove this when items are added)
[{new_version}](https://github.com/bird-house/birdhouse-deploy/tree/{new_version}) ({utcnow:%Y-%m-%d})
------------------------------------------------------------------------------------------------------------------
[bumpversion:file:Makefile]
search = APP_VERSION := {current_version}
replace = APP_VERSION := {new_version}
[bumpversion:file:README.rst]
search = {current_version}
replace = {new_version}
[bumpversion:file:RELEASE.txt]
search = {current_version} 2024-11-19T13:53:14Z
replace = {new_version} {utcnow:%Y-%m-%dT%H:%M:%SZ}
[bumpversion:part:releaseTime]
values = 2024-11-19T13:53:14Z
[bumpversion:file(version):birdhouse/components/canarie-api/docker_configuration.py.template]
search = 'version': '{current_version}'
replace = 'version': '{new_version}'
[bumpversion:file(releaseTime):birdhouse/components/canarie-api/docker_configuration.py.template]
parse = 'releaseTime': '(?P<releaseTime>.*)'
serialize = {releaseTime}
replace = {utcnow:%Y-%m-%dT%H:%M:%SZ}
[bumpversion:file:docs/source/conf.py]
search = '{current_version}'
replace = '{new_version}'