Author: gbadner
Date: 2009-05-28 05:09:50 -0400 (Thu, 28 May 2009)
New Revision: 16628
Modified:
annotations/branches/v3_3_1_GA_CP/build.xml
annotations/branches/v3_3_1_GA_CP/changelog.txt
annotations/branches/v3_3_1_GA_CP/doc/reference/en/master.xml
annotations/branches/v3_3_1_GA_CP/readme.txt
annotations/branches/v3_3_1_GA_CP/src/java/org/hibernate/cfg/annotations/Version.java
Log:
JBPAPP-2038 : Upgrade Hibernate Annotations to 3.3.1.GA.CP01 for EAP 4.2 CP07 / 4.3 CP05
Modified: annotations/branches/v3_3_1_GA_CP/build.xml
===================================================================
--- annotations/branches/v3_3_1_GA_CP/build.xml 2009-05-28 02:31:44 UTC (rev 16627)
+++ annotations/branches/v3_3_1_GA_CP/build.xml 2009-05-28 09:09:50 UTC (rev 16628)
@@ -17,7 +17,7 @@
<!-- Name of project and version, used to create filenames -->
<property name="Name" value="Hibernate Annotations"/>
<property name="name" value="hibernate-annotations"/>
- <property name="version" value="3.3.1.GA"/>
+ <property name="version" value="3.3.1.GA.CP01"/>
<property name="javadoc.packagenames"
value="org.hibernate.*"/>
<property name="jdbc.dir" value="jdbc"/>
<property name="copy.test" value="true"/>
Modified: annotations/branches/v3_3_1_GA_CP/changelog.txt
===================================================================
--- annotations/branches/v3_3_1_GA_CP/changelog.txt 2009-05-28 02:31:44 UTC (rev 16627)
+++ annotations/branches/v3_3_1_GA_CP/changelog.txt 2009-05-28 09:09:50 UTC (rev 16628)
@@ -1,6 +1,23 @@
Hibernate Annotations Changelog
===============================
+3.3.1.GA.CP01
+---------------------
+
+** Bug
+ * [JBPAPP-1069] - Annotations - MSSQL/Oracle - Reserved word "File" causes
test to fail
+ * [JBPAPP-1070] - Annotations - MSSQL/Sybase - Duplicate fields in "order
by"
+ * [JBPAPP-1072] - Annotations - Oracle - "date"/"number" is
reserved in Oracle
+ * [JBPAPP-1073] - Annotations - Oracle - "size" is reserved in Oracle
+ * [JBPAPP-1124 / ANN-779] - Oracle/DB2 - Identifier is too long
+ * [JBPAPP-1852 / ANN-778] - Test hangs if an exception is thrown, due to unclosed
transaction
+ * [JBPAPP-1859 / ANN-742] - Primary key should not be set on nullable column
+ * [JBPAPP-1878 / ANN-817] - 8-bit characters in string values cause unit test
failures
+ * [JBPAPP-1879 / ANN-818] - @DiscriminatorFormula for an integer column with default
discriminator type causes failure for DB2/Sybase
+ * [JBPAPP-1890 / ANN-821] - org.hibernate.test.annotations.manytomany.ManyToManyTest
fails on sybase due to index too large
+ * [JBPAPP-1894 / ANN-822] - org.hibernate.test.annotations.EntityTest fails because
DB2 does not support unique constraints on nullable columns
+ * [JBPAPP-2032] - Annotations - Upgrading from 3.2.x to 3.3.x may cause
backward-compatibility issue due to ANN-683
+
3.3.1.GA (14-03-2008)
---------------------
@@ -683,4 +700,4 @@
- use of referencedColumnName for column other than the PK ones @ManyToMany (HBX-62)
- Support for a true bidirectional one to one relationship (HBX-177)
- support for initialValue and allocationSize in @SequenceGenerator (HBX-59)
- - finish support of optional=false (HBX-190)
\ No newline at end of file
+ - finish support of optional=false (HBX-190)
Modified: annotations/branches/v3_3_1_GA_CP/doc/reference/en/master.xml
===================================================================
--- annotations/branches/v3_3_1_GA_CP/doc/reference/en/master.xml 2009-05-28 02:31:44 UTC
(rev 16627)
+++ annotations/branches/v3_3_1_GA_CP/doc/reference/en/master.xml 2009-05-28 09:09:50 UTC
(rev 16628)
@@ -12,7 +12,7 @@
<subtitle>Reference Guide</subtitle>
- <releaseinfo>3.3.1.GA</releaseinfo>
+ <releaseinfo>3.3.1.GA.CP01</releaseinfo>
<mediaobject>
<imageobject>
@@ -74,4 +74,4 @@
&additionalmodules;
-</book>
\ No newline at end of file
+</book>
Modified: annotations/branches/v3_3_1_GA_CP/readme.txt
===================================================================
--- annotations/branches/v3_3_1_GA_CP/readme.txt 2009-05-28 02:31:44 UTC (rev 16627)
+++ annotations/branches/v3_3_1_GA_CP/readme.txt 2009-05-28 09:09:50 UTC (rev 16628)
@@ -1,6 +1,6 @@
Hibernate Annotations
==================================================
-Version: 3.3.1.GA, 14.03.2008
+Version: 3.3.1.GA.CP01
THIS RELEASE OF HIBERNATE ANNOTATIONS REQUIRES HIBERNATE CORE 3.2.0.GA (and above)
@@ -52,4 +52,4 @@
If you want to contribute, go to
http://www.hibernate.org/
This software and its documentation are distributed under the terms of the
-FSF Lesser Gnu Public License (see lgpl.txt).
\ No newline at end of file
+FSF Lesser Gnu Public License (see lgpl.txt).
Modified:
annotations/branches/v3_3_1_GA_CP/src/java/org/hibernate/cfg/annotations/Version.java
===================================================================
---
annotations/branches/v3_3_1_GA_CP/src/java/org/hibernate/cfg/annotations/Version.java 2009-05-28
02:31:44 UTC (rev 16627)
+++
annotations/branches/v3_3_1_GA_CP/src/java/org/hibernate/cfg/annotations/Version.java 2009-05-28
09:09:50 UTC (rev 16628)
@@ -8,7 +8,7 @@
* @author Emmanuel Bernard
*/
public class Version {
- public static final String VERSION = "3.3.1.GA";
+ public static final String VERSION = "3.3.1.GA.CP01";
private static Log log = LogFactory.getLog( Version.class );
static {