File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change
1
+ [bumpversion]
2
+ current_version = 4.0.0
3
+ commit = True
4
+ tag = True
5
+
6
+ [bumpversion:file:meson.build]
7
+ search = version: ' {current_version}'
8
+ replace = version: ' {new_version}'
9
+
10
+ [bumpversion:file:configure.ac]
11
+ search = AC_INIT([xraylib],[{current_version}],[Tom.Schoonjans@me.com])
12
+ replace = AC_INIT([xraylib],[{new_version}],[Tom.Schoonjans@me.com])
13
+
14
+ [bumpversion:file:idl/libxrlidl.dlm]
15
+ search = VERSION {current_version}
16
+ replace = VERSION {new_version}
17
+
18
+ [bumpversion:file:java/GoogleAnalyticsThread.java]
19
+ search = GOOGLE_ANALYTICS_APPLICATION_VERSION = " {current_version}" ;
20
+ replace = GOOGLE_ANALYTICS_APPLICATION_VERSION = " {new_version}" ;
21
+
22
+ [bumpversion:file:java/build.gradle.in]
23
+ search = version = ' {current_version}'
24
+ replace = version = ' {new_version}'
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ apply plugin: 'java-library'
20
20
apply plugin: 'biz.aQute.bnd.builder'
21
21
22
22
23
- version = '@VERSION@ '
23
+ version = '4.0.0 '
24
24
group = 'com.github.tschoonj'
25
25
sourceCompatibility = '1.8'
26
26
targetCompatibility = '1.8'
Original file line number Diff line number Diff line change 1
1
project (' xraylib' ,
2
2
' c' ,
3
3
meson_version : ' >= 0.56.0' ,
4
- version :' 4.0.0' ,
4
+ version : ' 4.0.0' ,
5
5
license : ' BSD' ,
6
6
default_options : [' cpp_std=c++11' ,]
7
7
)
You can’t perform that action at this time.
0 commit comments