[hibernate-commits] Hibernate SVN: r14400 - annotations/trunk.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Mar 6 18:09:01 EST 2008


Author: epbernard
Date: 2008-03-06 18:09:00 -0500 (Thu, 06 Mar 2008)
New Revision: 14400

Modified:
   annotations/trunk/build.xml
   annotations/trunk/changelog.txt
   annotations/trunk/ivy.xml
   annotations/trunk/readme.txt
Log:
Release

Modified: annotations/trunk/build.xml
===================================================================
--- annotations/trunk/build.xml	2008-03-06 22:19:34 UTC (rev 14399)
+++ annotations/trunk/build.xml	2008-03-06 23:09:00 UTC (rev 14400)
@@ -253,6 +253,11 @@
 				<include name="common-build.xml"/>
 			</fileset>
 		</copy>
+        <copy todir="${dist.dir}/ivy" failonerror="false">
+            <fileset dir="${ivy.jar.dir}">
+                <include name="**/*.*"/>
+            </fileset>
+        </copy>
 
         <!-- copy dependencies -->
         <copy todir="${dist.lib.dir}" failonerror="false">
@@ -268,6 +273,9 @@
                 <include name="*.jar"/>
             </fileset>
         </copy>
+        <copy todir="${dist.lib.dir}/test" failonerror="false">
+			<fileset file="${lib.dir}/test/*.jar"/>
+        </copy>
 
         <copy file="${basedir}/build.properties.dist" tofile="${dist.dir}/build.properties" failonerror="false">
 		</copy>

Modified: annotations/trunk/changelog.txt
===================================================================
--- annotations/trunk/changelog.txt	2008-03-06 22:19:34 UTC (rev 14399)
+++ annotations/trunk/changelog.txt	2008-03-06 23:09:00 UTC (rev 14400)
@@ -1,6 +1,30 @@
 Hibernate Annotations Changelog
 ===============================
 
+3.3.1.CR1 (06-03-2008)
+----------------------
+
+** Bug
+    * [ANN-509] - referencedColumnName to non primary key foreign key column causes MappingException
+    * [ANN-590] - Alphabetical order issue when @ManyToOne is used in PrimaryKey and explicit referencedColumnName are used
+    * [ANN-653] - Exception when overriding collection mapping with @AssociationOverride
+    * [ANN-673] - Guaranty column order in genereted schema
+    * [ANN-676] - Composite PK/FK and the alphabetical order of class names
+    * [ANN-683] - AnnotationConfiguration hashCode collisions produce random binding failures
+    * [ANN-698] - Unbound property when default field access is used lead to unbound AnnotationException
+    * [ANN-699] - AnnotationBinder.mustBeSkipped references org.hibernate.tool.instrument.javassist.FieldHandler (hardcoded String-Reference)
+    * [ANN-700] - Hibernate's @NamedQuery always sets flushMode
+
+
+** Improvement
+    * [ANN-650] - Explicitly disallow @Version on @Embedded and throw meaningful Exception
+    * [ANN-690] - Override relevant Configuration methods in AnnotationConfiguration for method chaining
+
+** New Feature
+    * [ANN-442] - Support @GenericGenerators (Paul Cowan)
+    * [ANN-695] - Transparent integration of the new Hibernate Search collection event listeners
+
+
 3.3.1.Beta1 (31-10-2007)
 ------------------------
 

Modified: annotations/trunk/ivy.xml
===================================================================
--- annotations/trunk/ivy.xml	2008-03-06 22:19:34 UTC (rev 14399)
+++ annotations/trunk/ivy.xml	2008-03-06 23:09:00 UTC (rev 14400)
@@ -13,6 +13,6 @@
     </publications>
     <dependencies>
 		<dependency name="jpa-api" rev="1.0.1.Beta1" conf="core->default"/>
-        <dependency name="commons-annotations" rev="latest.integration" conf="core->core"/>
+        <dependency name="commons-annotations" rev="3.0.0.GA" conf="core->core"/>
     </dependencies>
 </ivy-module>
\ No newline at end of file

Modified: annotations/trunk/readme.txt
===================================================================
--- annotations/trunk/readme.txt	2008-03-06 22:19:34 UTC (rev 14399)
+++ annotations/trunk/readme.txt	2008-03-06 23:09:00 UTC (rev 14400)
@@ -1,6 +1,6 @@
 Hibernate Annotations
 ==================================================
-Version: 3.3.1.Beta1, 31.10.2007
+Version: 3.3.1.CR1, 6.03.2008
 
 THIS RELEASE OF HIBERNATE ANNOTATIONS REQUIRES HIBERNATE CORE 3.2.0.GA (and above)
 




More information about the hibernate-commits mailing list