Skip to content

Commit

Permalink
update to 2.0.1 for Grails, and 1.0.2 for datastore
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Feb 14, 2012
1 parent 8c059f3 commit 81eec63
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {

apply plugin: 'idea'

grailsVersion = '2.0.1.BUILD-SNAPSHOT'
grailsVersion = '2.0.1'
antTraxVersion = "1.7.1"
antVersion = "1.8.2"
aspectjVersion = "1.6.10"
Expand All @@ -25,7 +25,7 @@ commonsCliVersion = "1.2"
commonsCollectionsVersion = "3.2.1"
commonsIOVersion = "2.1"
commonsLangVersion = "2.6"
datastoreVersion = "1.0.2.BUILD-SNAPSHOT"
datastoreVersion = "1.0.2.RELEASE"
gantVersion = "1.9.6"
gdocEngineVersion = "1.0.1"
groovyVersion = "1.8.6"
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
grails.version=2.0.1.BUILD-SNAPSHOT
grails.version=2.0.1

# Bundlor dependency versions
bundlor.javax.persistence.version=1.0.2.GA
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public Object doCall() {
};
registerDependencies(dependencyManager, compileTimeDependenciesMethod, commonsExcludingLoggingAndXmlApis, "commons-logging", "xml-apis", "commons-digester");

String datastoreMappingVersion = "1.0.2.BUILD-SNAPSHOT";
String datastoreMappingVersion = "1.0.2.RELEASE";
ModuleRevisionId[] compileDependencies = {
ModuleRevisionId.newInstance("aopalliance", "aopalliance", "1.0"),
ModuleRevisionId.newInstance("com.googlecode.concurrentlinkedhashmap", "concurrentlinkedhashmap-lru", "1.2_jdk5"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public class GrailsUtilTests extends TestCase {

public void testGrailsVersion() {
assertEquals("2.0.1.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
assertEquals("2.0.1", GrailsUtil.getGrailsVersion());
}

@Override
Expand Down

0 comments on commit 81eec63

Please sign in to comment.