Skip to content

Commit 3831f52

Browse files
committed
Release Grails 3.1.16
1 parent e118dbd commit 3831f52

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ deploy:
4040
tags: true
4141
all_branches: true
4242
after_deploy:
43-
- ./gradlew sdkMajorRelease
43+
- ./gradlew sdkMinorRelease
4444
after_success:
4545
- ./trigger-dependent-build.sh
4646
cache:

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ apply plugin: 'idea'
2121
ext {
2222
bintrayPublish = false
2323
// Sets release version
24-
grailsVersion = '3.1.16.BUILD-SNAPSHOT'
25-
// grailsVersion = '3.1.15'
24+
// grailsVersion = '3.1.17.BUILD-SNAPSHOT'
25+
grailsVersion = '3.1.16'
2626
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
2727
isTravisBuild = System.getenv().get("TRAVIS") == 'true'
2828

grails-core/src/test/groovy/grails/util/GrailsUtilTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
public class GrailsUtilTests extends TestCase {
3636

3737
public void testGrailsVersion() {
38-
assertEquals("3.1.16.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
38+
assertEquals("3.1.16", GrailsUtil.getGrailsVersion());
3939
}
4040

4141
@Override

0 commit comments

Comments
 (0)