Hibernate SVN: r20649 - core/branches/Branch_3_5/documentation/manual/src/main/docbook/en-US/content.
by hibernate-commits@lists.jboss.org
Author: stliu
Date: 2010-09-16 02:39:05 -0400 (Thu, 16 Sep 2010)
New Revision: 20649
Modified:
core/branches/Branch_3_5/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml
Log:
HHH-5568 correct wrong format in document
Modified: core/branches/Branch_3_5/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml 2010-09-16 06:36:49 UTC (rev 20648)
+++ core/branches/Branch_3_5/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml 2010-09-16 06:39:05 UTC (rev 20649)
@@ -3553,14 +3553,14 @@
Hibernate allows you to customize the SQL it uses to read and write the values
of columns mapped to <link linkend="mapping-declaration-property">simple properties</link>.
For example, if your database provides a set of data encryption functions, you can
- invoke them for individual columns like this:
+ invoke them for individual columns like this:</para>
<programlisting role="XML"><![CDATA[<property name="creditCardNumber">
<column
name="credit_card_num"
read="decrypt(credit_card_num)"
write="encrypt(?)"/>
</property>]]></programlisting>
- </para>
+
<para>
Hibernate applies the custom expressions automatically whenever the property is
referenced in a query. This functionality is similar to a derived-property
14 years, 3 months
Hibernate SVN: r20648 - core/trunk/documentation/manual/src/main/docbook/en-US/content.
by hibernate-commits@lists.jboss.org
Author: stliu
Date: 2010-09-16 02:36:49 -0400 (Thu, 16 Sep 2010)
New Revision: 20648
Modified:
core/trunk/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml
Log:
HHH-5568 correct wrong format in document
Modified: core/trunk/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml 2010-09-15 21:27:53 UTC (rev 20647)
+++ core/trunk/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml 2010-09-16 06:36:49 UTC (rev 20648)
@@ -5777,13 +5777,15 @@
the values of columns mapped to <link
linkend="mapping-declaration-property">simple properties</link>. For
example, if your database provides a set of data encryption functions, you
- can invoke them for individual columns like this: <programlisting
+ can invoke them for individual columns like this:
+</para>
+<programlisting
role="XML"><property name="creditCardNumber">
<column
name="credit_card_num"
read="decrypt(credit_card_num)"
write="encrypt(?)"/>
-</property></programlisting></para>
+</property></programlisting>
<para>Hibernate applies the custom expressions automatically whenever the
property is referenced in a query. This functionality is similar to a
14 years, 3 months
Hibernate SVN: r20647 - in core/branches/Branch_3_5: annotations and 25 other directories.
by hibernate-commits@lists.jboss.org
Author: gbadner
Date: 2010-09-15 17:27:53 -0400 (Wed, 15 Sep 2010)
New Revision: 20647
Modified:
core/branches/Branch_3_5/annotations/pom.xml
core/branches/Branch_3_5/cache-ehcache/pom.xml
core/branches/Branch_3_5/cache-infinispan/pom.xml
core/branches/Branch_3_5/cache-jbosscache/pom.xml
core/branches/Branch_3_5/cache-oscache/pom.xml
core/branches/Branch_3_5/cache-swarmcache/pom.xml
core/branches/Branch_3_5/connection-c3p0/pom.xml
core/branches/Branch_3_5/connection-proxool/pom.xml
core/branches/Branch_3_5/core/pom.xml
core/branches/Branch_3_5/distribution/pom.xml
core/branches/Branch_3_5/documentation/envers/pom.xml
core/branches/Branch_3_5/documentation/jbosscache2/pom.xml
core/branches/Branch_3_5/documentation/manual/pom.xml
core/branches/Branch_3_5/documentation/pom.xml
core/branches/Branch_3_5/entitymanager/pom.xml
core/branches/Branch_3_5/envers/pom.xml
core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml
core/branches/Branch_3_5/jdbc3-testing/pom.xml
core/branches/Branch_3_5/jdbc4-testing/pom.xml
core/branches/Branch_3_5/jmx/pom.xml
core/branches/Branch_3_5/parent/pom.xml
core/branches/Branch_3_5/pom.xml
core/branches/Branch_3_5/testing/pom.xml
core/branches/Branch_3_5/testsuite/pom.xml
core/branches/Branch_3_5/tutorials/eg/pom.xml
core/branches/Branch_3_5/tutorials/pom.xml
core/branches/Branch_3_5/tutorials/web/pom.xml
Log:
Updated version to 3.5.7-SNAPSHOT
Modified: core/branches/Branch_3_5/annotations/pom.xml
===================================================================
--- core/branches/Branch_3_5/annotations/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/annotations/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-ehcache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-ehcache/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/cache-ehcache/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-infinispan/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-infinispan/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/cache-infinispan/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-jbosscache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-jbosscache/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/cache-jbosscache/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-oscache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-oscache/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/cache-oscache/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-swarmcache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-swarmcache/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/cache-swarmcache/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/connection-c3p0/pom.xml
===================================================================
--- core/branches/Branch_3_5/connection-c3p0/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/connection-c3p0/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/connection-proxool/pom.xml
===================================================================
--- core/branches/Branch_3_5/connection-proxool/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/connection-proxool/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/core/pom.xml
===================================================================
--- core/branches/Branch_3_5/core/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/core/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/distribution/pom.xml
===================================================================
--- core/branches/Branch_3_5/distribution/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/distribution/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/envers/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/envers/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/documentation/envers/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/jbosscache2/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/jbosscache2/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/documentation/jbosscache2/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/manual/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/documentation/manual/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/documentation/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/entitymanager/pom.xml
===================================================================
--- core/branches/Branch_3_5/entitymanager/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/entitymanager/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/envers/pom.xml
===================================================================
--- core/branches/Branch_3_5/envers/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/envers/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml
===================================================================
--- core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -27,7 +27,7 @@
<parent>
<artifactId>hibernate-parent</artifactId>
<groupId>org.hibernate</groupId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jdbc3-testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/jdbc3-testing/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/jdbc3-testing/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jdbc4-testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/jdbc4-testing/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/jdbc4-testing/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jmx/pom.xml
===================================================================
--- core/branches/Branch_3_5/jmx/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/jmx/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/parent/pom.xml
===================================================================
--- core/branches/Branch_3_5/parent/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/parent/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -29,7 +29,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
Modified: core/branches/Branch_3_5/pom.xml
===================================================================
--- core/branches/Branch_3_5/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/testing/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/testing/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/testsuite/pom.xml
===================================================================
--- core/branches/Branch_3_5/testsuite/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/testsuite/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/eg/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/eg/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/tutorials/eg/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/tutorials/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/web/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/web/pom.xml 2010-09-15 21:24:35 UTC (rev 20646)
+++ core/branches/Branch_3_5/tutorials/web/pom.xml 2010-09-15 21:27:53 UTC (rev 20647)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.5.6-Final</version>
+ <version>3.5.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
14 years, 3 months
Hibernate SVN: r20646 - core/tags.
by hibernate-commits@lists.jboss.org
Author: gbadner
Date: 2010-09-15 17:24:35 -0400 (Wed, 15 Sep 2010)
New Revision: 20646
Added:
core/tags/hibernate-3.5.6-Final/
Log:
Create tag for hibernate-3.5.6-Final
Copied: core/tags/hibernate-3.5.6-Final (from rev 20645, core/branches/Branch_3_5)
14 years, 3 months
Hibernate SVN: r20645 - in core/branches/Branch_3_5: annotations and 25 other directories.
by hibernate-commits@lists.jboss.org
Author: gbadner
Date: 2010-09-15 17:22:12 -0400 (Wed, 15 Sep 2010)
New Revision: 20645
Modified:
core/branches/Branch_3_5/annotations/pom.xml
core/branches/Branch_3_5/cache-ehcache/pom.xml
core/branches/Branch_3_5/cache-infinispan/pom.xml
core/branches/Branch_3_5/cache-jbosscache/pom.xml
core/branches/Branch_3_5/cache-oscache/pom.xml
core/branches/Branch_3_5/cache-swarmcache/pom.xml
core/branches/Branch_3_5/connection-c3p0/pom.xml
core/branches/Branch_3_5/connection-proxool/pom.xml
core/branches/Branch_3_5/core/pom.xml
core/branches/Branch_3_5/distribution/pom.xml
core/branches/Branch_3_5/documentation/envers/pom.xml
core/branches/Branch_3_5/documentation/jbosscache2/pom.xml
core/branches/Branch_3_5/documentation/manual/pom.xml
core/branches/Branch_3_5/documentation/pom.xml
core/branches/Branch_3_5/entitymanager/pom.xml
core/branches/Branch_3_5/envers/pom.xml
core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml
core/branches/Branch_3_5/jdbc3-testing/pom.xml
core/branches/Branch_3_5/jdbc4-testing/pom.xml
core/branches/Branch_3_5/jmx/pom.xml
core/branches/Branch_3_5/parent/pom.xml
core/branches/Branch_3_5/pom.xml
core/branches/Branch_3_5/testing/pom.xml
core/branches/Branch_3_5/testsuite/pom.xml
core/branches/Branch_3_5/tutorials/eg/pom.xml
core/branches/Branch_3_5/tutorials/pom.xml
core/branches/Branch_3_5/tutorials/web/pom.xml
Log:
Updated version to 3.5.6-Final
Modified: core/branches/Branch_3_5/annotations/pom.xml
===================================================================
--- core/branches/Branch_3_5/annotations/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/annotations/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-ehcache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-ehcache/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/cache-ehcache/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-infinispan/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-infinispan/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/cache-infinispan/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-jbosscache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-jbosscache/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/cache-jbosscache/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-oscache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-oscache/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/cache-oscache/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/cache-swarmcache/pom.xml
===================================================================
--- core/branches/Branch_3_5/cache-swarmcache/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/cache-swarmcache/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/connection-c3p0/pom.xml
===================================================================
--- core/branches/Branch_3_5/connection-c3p0/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/connection-c3p0/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/connection-proxool/pom.xml
===================================================================
--- core/branches/Branch_3_5/connection-proxool/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/connection-proxool/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/core/pom.xml
===================================================================
--- core/branches/Branch_3_5/core/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/core/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/distribution/pom.xml
===================================================================
--- core/branches/Branch_3_5/distribution/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/distribution/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/envers/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/envers/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/documentation/envers/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/jbosscache2/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/jbosscache2/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/documentation/jbosscache2/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/manual/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/documentation/manual/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/documentation/pom.xml
===================================================================
--- core/branches/Branch_3_5/documentation/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/documentation/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/entitymanager/pom.xml
===================================================================
--- core/branches/Branch_3_5/entitymanager/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/entitymanager/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/envers/pom.xml
===================================================================
--- core/branches/Branch_3_5/envers/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/envers/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml
===================================================================
--- core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/hibernate-maven-plugin/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -27,7 +27,7 @@
<parent>
<artifactId>hibernate-parent</artifactId>
<groupId>org.hibernate</groupId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jdbc3-testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/jdbc3-testing/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/jdbc3-testing/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jdbc4-testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/jdbc4-testing/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/jdbc4-testing/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/jmx/pom.xml
===================================================================
--- core/branches/Branch_3_5/jmx/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/jmx/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/parent/pom.xml
===================================================================
--- core/branches/Branch_3_5/parent/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/parent/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -29,7 +29,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
Modified: core/branches/Branch_3_5/pom.xml
===================================================================
--- core/branches/Branch_3_5/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/testing/pom.xml
===================================================================
--- core/branches/Branch_3_5/testing/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/testing/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/testsuite/pom.xml
===================================================================
--- core/branches/Branch_3_5/testsuite/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/testsuite/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/eg/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/eg/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/tutorials/eg/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/tutorials/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/branches/Branch_3_5/tutorials/web/pom.xml
===================================================================
--- core/branches/Branch_3_5/tutorials/web/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
+++ core/branches/Branch_3_5/tutorials/web/pom.xml 2010-09-15 21:22:12 UTC (rev 20645)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.5.6-SNAPSHOT</version>
+ <version>3.5.6-Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
14 years, 3 months
Hibernate SVN: r20644 - in core/trunk: cache-ehcache and 29 other directories.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2010-09-15 14:26:18 -0400 (Wed, 15 Sep 2010)
New Revision: 20644
Modified:
core/trunk/cache-ehcache/pom.xml
core/trunk/cache-infinispan/pom.xml
core/trunk/cache-jbosscache/pom.xml
core/trunk/cache-oscache/pom.xml
core/trunk/cache-swarmcache/pom.xml
core/trunk/connection-c3p0/pom.xml
core/trunk/connection-proxool/pom.xml
core/trunk/core/pom.xml
core/trunk/distribution/pom.xml
core/trunk/documentation/devguide/pom.xml
core/trunk/documentation/envers/pom.xml
core/trunk/documentation/jbosscache2/pom.xml
core/trunk/documentation/manual/pom.xml
core/trunk/documentation/pom.xml
core/trunk/documentation/quickstart/pom.xml
core/trunk/documentation/quickstart/tutorials/annotations/pom.xml
core/trunk/documentation/quickstart/tutorials/basic/pom.xml
core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml
core/trunk/documentation/quickstart/tutorials/envers/pom.xml
core/trunk/documentation/quickstart/tutorials/pom.xml
core/trunk/entitymanager/pom.xml
core/trunk/envers/pom.xml
core/trunk/jdbc3-testing/pom.xml
core/trunk/jdbc4-testing/pom.xml
core/trunk/parent/pom.xml
core/trunk/pom.xml
core/trunk/testing/pom.xml
core/trunk/testsuite/pom.xml
core/trunk/tutorials/eg/pom.xml
core/trunk/tutorials/pom.xml
core/trunk/tutorials/web/pom.xml
Log:
Updating pom versions to 3.6.0-SNAPSHOT for release tagging
Modified: core/trunk/cache-ehcache/pom.xml
===================================================================
--- core/trunk/cache-ehcache/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/cache-ehcache/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-infinispan/pom.xml
===================================================================
--- core/trunk/cache-infinispan/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/cache-infinispan/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-jbosscache/pom.xml
===================================================================
--- core/trunk/cache-jbosscache/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/cache-jbosscache/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-oscache/pom.xml
===================================================================
--- core/trunk/cache-oscache/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/cache-oscache/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-swarmcache/pom.xml
===================================================================
--- core/trunk/cache-swarmcache/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/cache-swarmcache/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/connection-c3p0/pom.xml
===================================================================
--- core/trunk/connection-c3p0/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/connection-c3p0/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/connection-proxool/pom.xml
===================================================================
--- core/trunk/connection-proxool/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/connection-proxool/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/core/pom.xml
===================================================================
--- core/trunk/core/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/core/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/distribution/pom.xml
===================================================================
--- core/trunk/distribution/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/distribution/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/devguide/pom.xml
===================================================================
--- core/trunk/documentation/devguide/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/documentation/devguide/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/envers/pom.xml
===================================================================
--- core/trunk/documentation/envers/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/documentation/envers/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/jbosscache2/pom.xml
===================================================================
--- core/trunk/documentation/jbosscache2/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/documentation/jbosscache2/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/manual/pom.xml
===================================================================
--- core/trunk/documentation/manual/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/documentation/manual/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/pom.xml
===================================================================
--- core/trunk/documentation/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/documentation/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/documentation/quickstart/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/annotations/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/annotations/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/documentation/quickstart/tutorials/annotations/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/basic/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/basic/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/documentation/quickstart/tutorials/basic/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -29,7 +29,7 @@
<parent>
<artifactId>hibernate-tutorials</artifactId>
<groupId>org.hibernate.tutorials</groupId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
</parent>
<artifactId>hibernate-tutorial-entitymanager</artifactId>
Modified: core/trunk/documentation/quickstart/tutorials/envers/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/envers/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/documentation/quickstart/tutorials/envers/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -29,7 +29,7 @@
<parent>
<artifactId>hibernate-tutorials</artifactId>
<groupId>org.hibernate.tutorials</groupId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
</parent>
<artifactId>hibernate-tutorial-envers</artifactId>
Modified: core/trunk/documentation/quickstart/tutorials/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/documentation/quickstart/tutorials/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -28,7 +28,7 @@
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Hibernate Getting Started Guide Tutorials</name>
Modified: core/trunk/entitymanager/pom.xml
===================================================================
--- core/trunk/entitymanager/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/entitymanager/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/envers/pom.xml
===================================================================
--- core/trunk/envers/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/envers/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/jdbc3-testing/pom.xml
===================================================================
--- core/trunk/jdbc3-testing/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/jdbc3-testing/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/jdbc4-testing/pom.xml
===================================================================
--- core/trunk/jdbc4-testing/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/jdbc4-testing/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/parent/pom.xml
===================================================================
--- core/trunk/parent/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/parent/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -29,7 +29,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
Modified: core/trunk/pom.xml
===================================================================
--- core/trunk/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/testing/pom.xml
===================================================================
--- core/trunk/testing/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/testing/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/testsuite/pom.xml
===================================================================
--- core/trunk/testsuite/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/testsuite/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/eg/pom.xml
===================================================================
--- core/trunk/tutorials/eg/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/tutorials/eg/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/pom.xml
===================================================================
--- core/trunk/tutorials/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/tutorials/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/web/pom.xml
===================================================================
--- core/trunk/tutorials/web/pom.xml 2010-09-15 18:25:58 UTC (rev 20643)
+++ core/trunk/tutorials/web/pom.xml 2010-09-15 18:26:18 UTC (rev 20644)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0.CR1</version>
+ <version>3.6.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
14 years, 3 months
Hibernate SVN: r20643 - core/tags.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2010-09-15 14:25:58 -0400 (Wed, 15 Sep 2010)
New Revision: 20643
Added:
core/tags/hibernate-3.6.0.CR1/
Log:
Tagging 3.6.0.CR1 release
Copied: core/tags/hibernate-3.6.0.CR1 (from rev 20642, core/trunk)
14 years, 3 months
Hibernate SVN: r20642 - in core/trunk: cache-ehcache and 29 other directories.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2010-09-15 14:25:47 -0400 (Wed, 15 Sep 2010)
New Revision: 20642
Modified:
core/trunk/cache-ehcache/pom.xml
core/trunk/cache-infinispan/pom.xml
core/trunk/cache-jbosscache/pom.xml
core/trunk/cache-oscache/pom.xml
core/trunk/cache-swarmcache/pom.xml
core/trunk/connection-c3p0/pom.xml
core/trunk/connection-proxool/pom.xml
core/trunk/core/pom.xml
core/trunk/distribution/pom.xml
core/trunk/documentation/devguide/pom.xml
core/trunk/documentation/envers/pom.xml
core/trunk/documentation/jbosscache2/pom.xml
core/trunk/documentation/manual/pom.xml
core/trunk/documentation/pom.xml
core/trunk/documentation/quickstart/pom.xml
core/trunk/documentation/quickstart/tutorials/annotations/pom.xml
core/trunk/documentation/quickstart/tutorials/basic/pom.xml
core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml
core/trunk/documentation/quickstart/tutorials/envers/pom.xml
core/trunk/documentation/quickstart/tutorials/pom.xml
core/trunk/entitymanager/pom.xml
core/trunk/envers/pom.xml
core/trunk/jdbc3-testing/pom.xml
core/trunk/jdbc4-testing/pom.xml
core/trunk/parent/pom.xml
core/trunk/pom.xml
core/trunk/testing/pom.xml
core/trunk/testsuite/pom.xml
core/trunk/tutorials/eg/pom.xml
core/trunk/tutorials/pom.xml
core/trunk/tutorials/web/pom.xml
Log:
Updating pom versions to 3.6.0.CR1 for release tagging
Modified: core/trunk/cache-ehcache/pom.xml
===================================================================
--- core/trunk/cache-ehcache/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/cache-ehcache/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-infinispan/pom.xml
===================================================================
--- core/trunk/cache-infinispan/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/cache-infinispan/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-jbosscache/pom.xml
===================================================================
--- core/trunk/cache-jbosscache/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/cache-jbosscache/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-oscache/pom.xml
===================================================================
--- core/trunk/cache-oscache/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/cache-oscache/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/cache-swarmcache/pom.xml
===================================================================
--- core/trunk/cache-swarmcache/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/cache-swarmcache/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/connection-c3p0/pom.xml
===================================================================
--- core/trunk/connection-c3p0/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/connection-c3p0/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/connection-proxool/pom.xml
===================================================================
--- core/trunk/connection-proxool/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/connection-proxool/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/core/pom.xml
===================================================================
--- core/trunk/core/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/core/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/distribution/pom.xml
===================================================================
--- core/trunk/distribution/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/distribution/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/devguide/pom.xml
===================================================================
--- core/trunk/documentation/devguide/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/documentation/devguide/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/envers/pom.xml
===================================================================
--- core/trunk/documentation/envers/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/documentation/envers/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/jbosscache2/pom.xml
===================================================================
--- core/trunk/documentation/jbosscache2/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/documentation/jbosscache2/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/manual/pom.xml
===================================================================
--- core/trunk/documentation/manual/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/documentation/manual/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/pom.xml
===================================================================
--- core/trunk/documentation/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/documentation/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/documentation/quickstart/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/annotations/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/annotations/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/documentation/quickstart/tutorials/annotations/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/basic/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/basic/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/documentation/quickstart/tutorials/basic/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/documentation/quickstart/tutorials/entitymanager/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -29,7 +29,7 @@
<parent>
<artifactId>hibernate-tutorials</artifactId>
<groupId>org.hibernate.tutorials</groupId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
</parent>
<artifactId>hibernate-tutorial-entitymanager</artifactId>
Modified: core/trunk/documentation/quickstart/tutorials/envers/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/envers/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/documentation/quickstart/tutorials/envers/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -22,16 +22,14 @@
~ 51 Franklin Street, Fifth Floor
~ Boston, MA 02110-1301 USA
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>hibernate-tutorials</artifactId>
<groupId>org.hibernate.tutorials</groupId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
</parent>
<artifactId>hibernate-tutorial-envers</artifactId>
@@ -56,4 +54,4 @@
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: core/trunk/documentation/quickstart/tutorials/pom.xml
===================================================================
--- core/trunk/documentation/quickstart/tutorials/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/documentation/quickstart/tutorials/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -28,7 +28,7 @@
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<packaging>pom</packaging>
<name>Hibernate Getting Started Guide Tutorials</name>
Modified: core/trunk/entitymanager/pom.xml
===================================================================
--- core/trunk/entitymanager/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/entitymanager/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/envers/pom.xml
===================================================================
--- core/trunk/envers/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/envers/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/jdbc3-testing/pom.xml
===================================================================
--- core/trunk/jdbc3-testing/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/jdbc3-testing/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/jdbc4-testing/pom.xml
===================================================================
--- core/trunk/jdbc4-testing/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/jdbc4-testing/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/parent/pom.xml
===================================================================
--- core/trunk/parent/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/parent/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -29,7 +29,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<name>Hibernate Core Parent POM</name>
<description>The base POM for all Hibernate Core modules.</description>
Modified: core/trunk/pom.xml
===================================================================
--- core/trunk/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/testing/pom.xml
===================================================================
--- core/trunk/testing/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/testing/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/testsuite/pom.xml
===================================================================
--- core/trunk/testsuite/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/testsuite/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/eg/pom.xml
===================================================================
--- core/trunk/tutorials/eg/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/tutorials/eg/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -30,7 +30,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/pom.xml
===================================================================
--- core/trunk/tutorials/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/tutorials/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: core/trunk/tutorials/web/pom.xml
===================================================================
--- core/trunk/tutorials/web/pom.xml 2010-09-15 18:01:09 UTC (rev 20641)
+++ core/trunk/tutorials/web/pom.xml 2010-09-15 18:25:47 UTC (rev 20642)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorials</artifactId>
- <version>3.6.0-SNAPSHOT</version>
+ <version>3.6.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
14 years, 3 months
Hibernate SVN: r20641 - core/branches/Branch_3_5.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2010-09-15 14:01:09 -0400 (Wed, 15 Sep 2010)
New Revision: 20641
Modified:
core/branches/Branch_3_5/changelog.txt
Log:
prep 3.5.6
Modified: core/branches/Branch_3_5/changelog.txt
===================================================================
--- core/branches/Branch_3_5/changelog.txt 2010-09-15 17:34:49 UTC (rev 20640)
+++ core/branches/Branch_3_5/changelog.txt 2010-09-15 18:01:09 UTC (rev 20641)
@@ -5,6 +5,31 @@
refer to the particular case on JIRA using the issue tracking number to learn
more about each case.
+Changes in version 3.5.6 (2010.09.15)
+-------------------------------------------
+http://opensource.atlassian.com/projects/hibernate/browse/HHH/fixforversion/11142
+
+** Bug
+ * [HHH-3334] - Cascade-save breaks if parent ID is assigned (delays insert) and child has identity ID (early insert) (Wallace Wadge)
+ * [HHH-5142] - Exception when initializing lazy @ManyToMany indexed collection containing not audited entities
+ * [HHH-5225] - Cannot parse order-by fragment if it contains a registered function without parentheses
+ * [HHH-5310] - orm_2_0.xsd compliant mapping files break in JEE use cases
+ * [HHH-5440] - Joined collection expressions not properly "rendered" in JPA Criteria queries
+ * [HHH-5511] - Infinispan Region.destroy() impl should call cache.stop()
+ * [HHH-5512] - JndiInfinispanRegionFactory shouldn't try to stop CacheManager
+ * [HHH-5519] - VersionedItem should not extend Item, otherwise query cache results are confusing
+ * [HHH-5542] - Infinispan region factory uses same cache instance for all timestamp regions
+ * [HHH-5545] - Resolve query cache results not up to date testsuite failures
+
+** Improvement
+ * [HHH-5564] - Upgrade to Infinispan 4.2.x
+
+** Task
+ * [HHH-5505] - enable Sybase 15.5 in the test db profile
+ * [HHH-5524] - Move tagRelease.sh into svn
+ * [HHH-5547] - Remove "old" docbook sources and cleanup all HEAD references to simhei.ttf
+
+
Changes in version 3.5.5 (2010.08.18)
-------------------------------------------
http://opensource.atlassian.com/projects/hibernate/browse/HHH/fixforversi...
14 years, 3 months
Hibernate SVN: r20640 - core/trunk.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2010-09-15 13:34:49 -0400 (Wed, 15 Sep 2010)
New Revision: 20640
Modified:
core/trunk/changelog.txt
Log:
prep 3.6.0.CR1
Modified: core/trunk/changelog.txt
===================================================================
--- core/trunk/changelog.txt 2010-09-15 17:25:58 UTC (rev 20639)
+++ core/trunk/changelog.txt 2010-09-15 17:34:49 UTC (rev 20640)
@@ -5,6 +5,34 @@
refer to the particular case on JIRA using the issue tracking number to learn
more about each case.
+Changes in version 3.6.0.CR1 (2010.09.15)
+-------------------------------------------
+http://opensource.atlassian.com/projects/hibernate/browse/HHH/fixforversion/11141
+
+** Sub-task
+ * [HHH-3766] - Modify the queries executed to use the "end-revision" column, when available
+ * [HHH-5446] - Write an envers tutorial guide
+ * [HHH-5499] - Extend AuditReader interface with findRevisions() method
+
+** Bug
+ * [HHH-5310] - orm_2_0.xsd compliant mapping files break in JEE use cases
+ * [HHH-5356] - Sybase 15 does not support cross join
+ * [HHH-5484] - org.hibernate.type.UUIDCharType incorrectly mapped to char and causes test fail due to the padding space
+ * [HHH-5542] - Infinispan region factory uses same cache instance for all timestamp regions
+ * [HHH-5545] - Resolve query cache results not up to date testsuite failures
+
+** Improvement
+ * [HHH-3709] - Add StartRevision/EndRevison fileds to audit tables
+ * [HHH-5372] - Improve envers query performance by using new REVEND column
+ * [HHH-5441] - Create "Getting Started Guide"
+ * [HHH-5543] - JEE bootstrapping should only parse and validate mapping files once
+ * [HHH-5557] - Sybase supports alias length upto 30 characters
+ * [HHH-5564] - Upgrade to Infinispan 4.2.x
+
+** Task
+ * [HHH-5524] - Move tagRelease.sh into svn
+
+
Changes in version 3.6.0.Beta4 (2010.09.01)
-------------------------------------------
http://opensource.atlassian.com/projects/hibernate/browse/HHH/fixforversi...
14 years, 3 months