Skip to content

Commit 0ec157d

Browse files
committed
Release 2.5.5
1 parent 59678b4 commit 0ec157d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
apply plugin: 'idea'
1515

1616
ext {
17-
grailsVersion = '2.5.5.BUILD-SNAPSHOT'
17+
grailsVersion = '2.5.5'
1818
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
1919
isTravisBuild = System.getenv().get("TRAVIS") == 'true'
2020

@@ -28,17 +28,17 @@ ext {
2828
datastoreVersion = "3.1.5.RELEASE"
2929
gantVersion = "1.9.6"
3030
gdocEngineVersion = "1.0.1"
31-
groovyVersion = System.getenv('CI_GROOVY_VERSION') ?: "2.4.4"
31+
groovyVersion = System.getenv('CI_GROOVY_VERSION') ?: "2.4.5"
3232
ivyVersion = "2.3.0"
3333
jansiVersion = "1.11"
3434
jlineVersion = "2.12"
3535
jnaVersion = "4.0.0"
3636
slf4jVersion = "1.7.5"
3737

3838
spockVersion = '1.0-groovy-2.4'
39-
springLoadedVersion = "1.2.4.RELEASE"
39+
springLoadedVersion = "1.2.5.RELEASE"
4040
springLoadedCommonOptions = "-Xverify:none -Dspringloaded.synchronize=true -Djdk.reflect.allowGetCallerClass=true"
41-
springVersion = "4.1.8.RELEASE" // ensure to sync "aspectjVersion" (see commend above)
41+
springVersion = "4.1.9.RELEASE" // ensure to sync "aspectjVersion" (see commend above)
4242
ehcacheVersion = "2.4.6"
4343
junitVersion = "4.12"
4444
concurrentlinkedhashmapVersion = "1.4"

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
grails.version=2.5.5.BUILD-SNAPSHOT
1+
grails.version=2.5.5

grails-test-suite-uber/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("2.5.5.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
38+
assertEquals("2.5.5", GrailsUtil.getGrailsVersion());
3939
}
4040

4141
@Override

0 commit comments

Comments
 (0)