-
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) · 836 Bytes
/
Copy path.bumpversion.cfg
File metadata and controls
33 lines (26 loc) · 836 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 = 1.1.0-dev1
commit = True
tag = True
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}
[bumpversion:part:release]
optional_value = prod
first_value = dev
values =
dev
prod
[bumpversion:file:./Dockerfile]
search = DBGR_SERVER_VERSION="{current_version}"
replace = DBGR_SERVER_VERSION="{new_version}"
[bumpversion:file:./3.9-slim.Dockerfile]
search = DBGR_SERVER_VERSION="{current_version}"
replace = DBGR_SERVER_VERSION="{new_version}"
[bumpversion:file:./frontend/package.json]
search = "version": "{current_version}"
replace = "version": "{new_version}"
[bumpversion:file:./frontend/src/dbgr.ts]
[bumpversion:file:./dbgr_server/__init__.py]
[bumpversion:file:./setup.py]