[hibernate-commits] Hibernate SVN: r14433 - in annotations/trunk: ivy and 1 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Mar 14 16:37:03 EDT 2008


Author: epbernard
Date: 2008-03-14 16:37:02 -0400 (Fri, 14 Mar 2008)
New Revision: 14433

Modified:
   annotations/trunk/build.xml
   annotations/trunk/changelog.txt
   annotations/trunk/ivy.xml
   annotations/trunk/ivy/ivyconf.xml
   annotations/trunk/readme.txt
   annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java
Log:
Release

Modified: annotations/trunk/build.xml
===================================================================
--- annotations/trunk/build.xml	2008-03-14 20:36:14 UTC (rev 14432)
+++ annotations/trunk/build.xml	2008-03-14 20:37:02 UTC (rev 14433)
@@ -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.CR1"/>
+	<property name="version" value="3.3.1.GA"/>
 	<property name="javadoc.packagenames" value="org.hibernate.*"/>
 	<property name="jdbc.dir" value="jdbc"/>
 	<property name="copy.test" value="true"/>

Modified: annotations/trunk/changelog.txt
===================================================================
--- annotations/trunk/changelog.txt	2008-03-14 20:36:14 UTC (rev 14432)
+++ annotations/trunk/changelog.txt	2008-03-14 20:37:02 UTC (rev 14433)
@@ -1,6 +1,26 @@
 Hibernate Annotations Changelog
 ===============================
 
+3.3.1.GA (14-03-2008)
+---------------------
+
+** Bug
+    * [ANN-610] - Copy/paste errors in reference docs
+    * [ANN-694] - Incorrect report of FK circularity error when the @*ToOne property name starts with the identifier property name
+    * [ANN-696] - @Type with Maps from Element to Element applies to both key to value type.
+
+
+** Improvement
+    * [ANN-701] - Better error message on incorrect use of @CollectionId
+
+** New Feature
+    * [ANN-607] - Release the hibernate-commons-annotations source at Sourceforce
+    * [ANN-709] - Express @Type on a Map key
+
+** Patch
+    * [ANN-706] - Typo's in reference manuals
+
+
 3.3.1.CR1 (06-03-2008)
 ----------------------
 

Modified: annotations/trunk/ivy/ivyconf.xml
===================================================================
--- annotations/trunk/ivy/ivyconf.xml	2008-03-14 20:36:14 UTC (rev 14432)
+++ annotations/trunk/ivy/ivyconf.xml	2008-03-14 20:37:02 UTC (rev 14433)
@@ -19,6 +19,10 @@
                 <ivy pattern="http://repository.jboss.org/[module]/[revision]/ivy.xml"/>
                 <artifact pattern="http://repository.jboss.org/[module]/[revision]/lib/[artifact].[ext]"/>
             </url>
+            <url name="jboss-rep-maven" m2compatible="true">
+                <ivy pattern="http://repository.jboss.org/maven2/[organization]/[module]/[revision]/ivy.xml"/>
+                <artifact pattern="http://repository.jboss.org/maven2/[organization]/[module]/[revision]/[artifact]-[revision].[ext]"/>
+            </url>
         </chain>
     </resolvers>
     <modules>

Modified: annotations/trunk/ivy.xml
===================================================================
--- annotations/trunk/ivy.xml	2008-03-14 20:36:14 UTC (rev 14432)
+++ annotations/trunk/ivy.xml	2008-03-14 20:37:02 UTC (rev 14433)
@@ -12,7 +12,7 @@
         <artifact name="hibernate-annotations" conf="core"/>
     </publications>
     <dependencies>
-		<dependency name="jpa-api" rev="1.0.1.Beta1" conf="core->default"/>
+		<dependency name="ejb3-persistence" rev="1.0.1.GA" conf="core->default"/>
         <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-14 20:36:14 UTC (rev 14432)
+++ annotations/trunk/readme.txt	2008-03-14 20:37:02 UTC (rev 14433)
@@ -1,6 +1,6 @@
 Hibernate Annotations
 ==================================================
-Version: 3.3.1.CR1, 6.03.2008
+Version: 3.3.1.GA, 14.03.2008
 
 THIS RELEASE OF HIBERNATE ANNOTATIONS REQUIRES HIBERNATE CORE 3.2.0.GA (and above)
 

Modified: annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java	2008-03-14 20:36:14 UTC (rev 14432)
+++ annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java	2008-03-14 20:37:02 UTC (rev 14433)
@@ -8,7 +8,7 @@
  * @author Emmanuel Bernard
  */
 public class Version {
-	public static final String VERSION = "3.3.1.CR1";
+	public static final String VERSION = "3.3.1.GA";
 	private static Log log = LogFactory.getLog( Version.class );
 
 	static {




More information about the hibernate-commits mailing list