Skip to content

Commit 4120a5d

Browse files
committed
fix some stuff necessary for the release
1 parent 5b354a5 commit 4120a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ subprojects {
180180
tagTemplate = 'v${version}'
181181
versionPatterns = [
182182
// increments the minor version: "1.0.0-SNAPSHOT" => "1.1.0-SNAPSHOT"
183-
/(\d+)\.\d+([^\d]*$)/: { Matcher m, Project p -> m.replaceAll("${(m[0][1] as int) + 1}.0${m[0][2]}") }
183+
/(\d+)\.\d+(([^\d\.].*)?$)/: { Matcher m, Project p -> m.replaceAll("${(m[0][1] as int) + 1}.0${m[0][2]}") }
184184
]
185185
git {
186186
requireBranch = '^(master|\\d+\\.\\d+\\.x)$'

0 commit comments

Comments
 (0)