-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy path.bumpversion.cfg
More file actions
28 lines (22 loc) · 776 Bytes
/
.bumpversion.cfg
File metadata and controls
28 lines (22 loc) · 776 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
[bumpversion]
current_version = 4.2.1
commit = True
tag = False
[bumpversion:file:meson.build]
search = version: '{current_version}'
replace = version: '{new_version}'
[bumpversion:file:configure.ac]
search = AC_INIT([xraylib],[{current_version}],[Tom.Schoonjans@me.com])
replace = AC_INIT([xraylib],[{new_version}],[Tom.Schoonjans@me.com])
[bumpversion:file:idl/libxrlidl.dlm]
search = VERSION {current_version}
replace = VERSION {new_version}
[bumpversion:file:java/build.gradle.in]
search = version = '{current_version}'
replace = version = '{new_version}'
[bumpversion:file:xraylib.spec]
search = Version: {current_version}
replace = Version: {new_version}
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"