|
From: <hib...@li...> - 2006-03-27 17:39:44
|
Author: ste...@jb...
Date: 2006-03-27 12:39:13 -0500 (Mon, 27 Mar 2006)
New Revision: 9689
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 cr1
Modified: trunk/Hibernate3/build.xml
===================================================================
--- trunk/Hibernate3/build.xml 2006-03-27 17:30:09 UTC (rev 9688)
+++ trunk/Hibernate3/build.xml 2006-03-27 17:39:13 UTC (rev 9689)
@@ -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="alpha2"/>
+ <property name="version.qualifier" value="cr1"/>
<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-27 17:30:09 UTC (rev 9688)
+++ trunk/Hibernate3/changelog.txt 2006-03-27 17:39:13 UTC (rev 9689)
@@ -5,7 +5,24 @@
refer to the particular case on JIRA using the issue tracking number to learn
more about each case.
+Chages in version 3.2 cr1 (2006.03.27)
+-------------------------------------------
+** Bug
+ * [HHH-1453] - Broken exception handling in NullableType
+
+** Improvement
+ * [HHH-227] - remove reflection optimizer
+ * [HHH-587] - Make ResultTransformer available for all query methods
+ * [HHH-1588] - delay inserts for insert-generated-identifiers outside transaction
+ * [HHH-1590] - redesign how PostInsertIdentifierGenerators are handled at insertion
+ * [HHH-1592] - allow SelectGenerator to use a defined natural-id (if one)
+
+** New Feature
+ * [HHH-332] - create ability to add resulttransformer to HQL query
+ * [HHH-1179] - support inline sequence id generation on Oracle using RETURNING clause
+
+
Chages in version 3.2 alpha2 (2006.03.15)
-------------------------------------------
Modified: trunk/Hibernate3/doc/reference/en/master.xml
===================================================================
--- trunk/Hibernate3/doc/reference/en/master.xml 2006-03-27 17:30:09 UTC (rev 9688)
+++ trunk/Hibernate3/doc/reference/en/master.xml 2006-03-27 17:39:13 UTC (rev 9689)
@@ -33,7 +33,7 @@
<bookinfo>
<title>HIBERNATE - Relational Persistence for Idiomatic Java</title>
<subtitle>Hibernate Reference Documentation</subtitle>
- <releaseinfo>3.2 alpha2</releaseinfo>
+ <releaseinfo>3.2 cr1</releaseinfo>
</bookinfo>
<toc/>
Modified: trunk/Hibernate3/readme.txt
===================================================================
--- trunk/Hibernate3/readme.txt 2006-03-27 17:30:09 UTC (rev 9688)
+++ trunk/Hibernate3/readme.txt 2006-03-27 17:39:13 UTC (rev 9689)
@@ -1,6 +1,6 @@
Hibernate - Relational Persistence for Idiomatic Java
=====================================================
-version 3.2 alpha2, Mar 15, 2006
+version 3.2 cr1, Mar 27, 2006
Instructions
------------
Modified: trunk/Hibernate3/src/org/hibernate/cfg/Environment.java
===================================================================
--- trunk/Hibernate3/src/org/hibernate/cfg/Environment.java 2006-03-27 17:30:09 UTC (rev 9688)
+++ trunk/Hibernate3/src/org/hibernate/cfg/Environment.java 2006-03-27 17:39:13 UTC (rev 9689)
@@ -153,7 +153,7 @@
*/
public final class Environment {
- public static final String VERSION = "3.2 alpha2";
+ public static final String VERSION = "3.2 cr1";
/**
* <tt>ConnectionProvider</tt> implementor to use when obtaining connections
|