Skip to content

Commit ce13620

Browse files
committed
Back to snapshot
1 parent ed0ca34 commit ce13620

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ apply plugin: 'idea'
2222
ext {
2323
bintrayPublish = false
2424
// Sets release version
25-
// grailsVersion = '3.3.7.BUILD-SNAPSHOT'
26-
grailsVersion = '3.3.7'
25+
grailsVersion = '3.3.8.BUILD-SNAPSHOT'
26+
// grailsVersion = '3.3.7'
2727
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
2828
isTravisBuild = System.getenv().get("TRAVIS") == 'true'
2929

@@ -337,7 +337,7 @@ subprojects { project ->
337337
user = System.getenv("BINTRAY_USER") ?: project.hasProperty("bintrayUser") ? project.bintrayUser : ''
338338
key = System.getenv("BINTRAY_KEY") ?: project.hasProperty("bintrayKey") ? project.bintrayKey : ''
339339
publications = ['maven']
340-
publish = false
340+
publish = true
341341
dryRun = false
342342
pkg {
343343
repo = 'grails-core'

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
public class GrailsUtilTests extends TestCase {
2626

2727
public void testGrailsVersion() {
28-
assertEquals("3.3.7", GrailsUtil.getGrailsVersion());
29-
// assertEquals("3.3.7.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
28+
// assertEquals("3.3.7", GrailsUtil.getGrailsVersion());
29+
assertEquals("3.3.8.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
3030
}
3131

3232
@Override

0 commit comments

Comments
 (0)