From: <hib...@li...> - 2006-03-16 03:47:32
|
Author: ste...@jb... Date: 2006-03-15 22:47:25 -0500 (Wed, 15 Mar 2006) New Revision: 9629 Modified: trunk/Hibernate3/build.xml trunk/Hibernate3/changelog.txt trunk/Hibernate3/doc/reference/en/master.xml trunk/Hibernate3/readme.txt trunk/Hibernate3/src/org/hibernate/cfg/Environment.java Log: prep 3.2 alpha2 Modified: trunk/Hibernate3/build.xml =================================================================== --- trunk/Hibernate3/build.xml 2006-03-15 19:15:17 UTC (rev 9628) +++ trunk/Hibernate3/build.xml 2006-03-16 03:47:25 UTC (rev 9629) @@ -19,7 +19,7 @@ <property name="version.major" value="3"/> <property name="version.minor" value="2"/> <property name="version.micro" value="0"/> - <property name="version.qualifier" value="alpha1"/> + <property name="version.qualifier" value="alpha2"/> <property name="version.full" value="${version.major}.${version.minor}.${version.micro}.${version.qualifier}"/> <property name="version.major_minor" value="${version.major}.${version.minor}"/> <property name="fullname" value="${name}-${version.full}"/> Modified: trunk/Hibernate3/changelog.txt =================================================================== --- trunk/Hibernate3/changelog.txt 2006-03-15 19:15:17 UTC (rev 9628) +++ trunk/Hibernate3/changelog.txt 2006-03-16 03:47:25 UTC (rev 9629) @@ -5,6 +5,23 @@ refer to the particular case on JIRA using the issue tracking number to learn more about each case. + +Chages in version 3.2 alpha2 (2006.03.15) +------------------------------------------- + +** Bug + * [HHH-535] - properties element causes exception in interface/abstract class + * [HHH-1325] - ArrayOutOfBounds expected in DatabaseMetadata.isTable when specifing schema + * [HHH-1435] - many-to-one lazy seems to be broken in 3.1.x + * [HHH-1531] - NPE with many-to-many and property-ref + * [HHH-1546] - generated version properties fail with multiple actions per flush + +** Improvement + * [HHH-1540] - Better Error Feedback In CollectionEntry.postFlush(PersistentCollection) + * [HHH-1555] - ConnectionReleaseMode.AFTER_STATEMENT and flushes + * [HHH-1559] - introduce TransactionFactory.isTransactionInProgress to facilitate EJB3 joinTransaction handling + + Chages in version 3.2 alpha1 (2006.02.28) ------------------------------------------- Modified: trunk/Hibernate3/doc/reference/en/master.xml =================================================================== --- trunk/Hibernate3/doc/reference/en/master.xml 2006-03-15 19:15:17 UTC (rev 9628) +++ trunk/Hibernate3/doc/reference/en/master.xml 2006-03-16 03:47:25 UTC (rev 9629) @@ -33,7 +33,7 @@ <bookinfo> <title>HIBERNATE - Relational Persistence for Idiomatic Java</title> <subtitle>Hibernate Reference Documentation</subtitle> - <releaseinfo>3.2 alpha1</releaseinfo> + <releaseinfo>3.2 alpha2</releaseinfo> </bookinfo> <toc/> Modified: trunk/Hibernate3/readme.txt =================================================================== --- trunk/Hibernate3/readme.txt 2006-03-15 19:15:17 UTC (rev 9628) +++ trunk/Hibernate3/readme.txt 2006-03-16 03:47:25 UTC (rev 9629) @@ -1,6 +1,6 @@ Hibernate - Relational Persistence for Idiomatic Java ===================================================== -version 3.2 alpha1, Feb 28, 2006 +version 3.2 alpha2, Mar 15, 2006 Instructions ------------ Modified: trunk/Hibernate3/src/org/hibernate/cfg/Environment.java =================================================================== --- trunk/Hibernate3/src/org/hibernate/cfg/Environment.java 2006-03-15 19:15:17 UTC (rev 9628) +++ trunk/Hibernate3/src/org/hibernate/cfg/Environment.java 2006-03-16 03:47:25 UTC (rev 9629) @@ -153,7 +153,7 @@ */ public final class Environment { - public static final String VERSION = "3.2 alpha1"; + public static final String VERSION = "3.2 alpha2"; /** * <tt>ConnectionProvider</tt> implementor to use when obtaining connections |