Skip to content

Commit c2db58e

Browse files
author
graeme
committed
updated to 1.0-RC1 release
git-svn-id: https://svn.codehaus.org/grails/trunk@5792 1cfb16fd-6d17-0410-8ff1-b7e8e1e2867d
1 parent 397e3ca commit c2db58e

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grails.version=1.0-RC1-SNAPSHOT
1+
grails.version=1.0-RC1
22
grails.src.commons=src/commons
33
grails.src.groovy=src/groovy
44

test/groovy/grails/util/GrailsUtilTests.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class GrailsUtilTests extends GroovyTestCase {
77

88
void testGrailsVersion() {
99

10-
assertEquals "1.0-RC1-SNAPSHOT", grails.util.GrailsUtil.getGrailsVersion()
10+
assertEquals "1.0-RC1", grails.util.GrailsUtil.getGrailsVersion()
1111
}
1212

1313
}

test/persistence/hibernate.cfg.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 2.0//EN" "test/persistence/hibernate-configuration-2.0.dtd">
2+
<!DOCTYPE hibernate-configuration PUBLIC
3+
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
4+
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
5+
36
<hibernate-configuration>
47

58
<!-- a SessionFactory instance listed as /jndi/name -->

test/persistence/org/codehaus/groovy/grails/orm/hibernate/HibernateMappedClass.hbm.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
3-
<!DOCTYPE hibernate-mapping PUBLIC
4-
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
5-
"test/persistence/hibernate-mapping-2.0.dtd">
6-
<hibernate-mapping
7-
>
2+
<!DOCTYPE hibernate-mapping PUBLIC
3+
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4+
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
5+
<hibernate-mapping>
86
<class
97

108
name="org.codehaus.groovy.grails.orm.hibernate.HibernateMappedClass"

0 commit comments

Comments
 (0)