Skip to content

Commit f6d21db

Browse files
committed
update to version 2.2.3 and datastore 1.1.8 release
1 parent 1e9916f commit f6d21db

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

build.gradle

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

1616
ext {
17-
grailsVersion = '2.2.3.BUILD-SNAPSHOT'
17+
grailsVersion = '2.2.3'
1818
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
1919
antTraxVersion = "1.7.1"
2020
antVersion = "1.8.2"
@@ -24,7 +24,7 @@ ext {
2424
commonsCollectionsVersion = "3.2.1"
2525
commonsIOVersion = "2.1"
2626
commonsLangVersion = "2.6"
27-
datastoreVersion = "1.1.8.BUILD-SNAPSHOT"
27+
datastoreVersion = "1.1.8.RELEASE"
2828
gantVersion = "1.9.6"
2929
gdocEngineVersion = "1.0.1"
3030
groovyVersion = "2.0.8"

build.properties

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

grails-bootstrap/src/main/groovy/org/codehaus/groovy/grails/resolve/GrailsCoreDependencies.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ public Object doCall() {
172172
};
173173
registerDependencies(dependencyManager, compileTimeDependenciesMethod, commonsExcludingLoggingAndXmlApis, "commons-logging", "xml-apis", "commons-digester");
174174

175-
String datastoreMappingVersion = "1.1.8.BUILD-SNAPSHOT";
175+
String datastoreMappingVersion = "1.1.8.RELEASE";
176176
ModuleRevisionId[] compileDependencies = {
177177
ModuleRevisionId.newInstance("aopalliance", "aopalliance", "1.0"),
178178
ModuleRevisionId.newInstance("com.googlecode.concurrentlinkedhashmap", "concurrentlinkedhashmap-lru", "1.3.1"),

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.2.3.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
38+
assertEquals("2.2.3", GrailsUtil.getGrailsVersion());
3939
}
4040

4141
@Override

0 commit comments

Comments
 (0)