[hibernate-commits] Hibernate SVN: r14979 - in annotations/trunk: doc/reference/en and 2 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Jul 29 09:57:34 EDT 2008


Author: hardy.ferentschik
Date: 2008-07-29 09:57:34 -0400 (Tue, 29 Jul 2008)
New Revision: 14979

Modified:
   annotations/trunk/build.xml
   annotations/trunk/changelog.txt
   annotations/trunk/doc/reference/en/master.xml
   annotations/trunk/ivy.xml
   annotations/trunk/pom.xml
   annotations/trunk/readme.txt
   annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java
   annotations/trunk/src/java/org/hibernate/cfg/search/HibernateSearchEventListenerRegister.java
Log:
Updated all required files for release of 3.4.0.CR2

Modified: annotations/trunk/build.xml
===================================================================
--- annotations/trunk/build.xml	2008-07-29 13:20:43 UTC (rev 14978)
+++ annotations/trunk/build.xml	2008-07-29 13:57:34 UTC (rev 14979)
@@ -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.4.0.CR1"/>
+	<property name="version" value="3.4.0.CR2"/>
 	<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-07-29 13:20:43 UTC (rev 14978)
+++ annotations/trunk/changelog.txt	2008-07-29 13:57:34 UTC (rev 14979)
@@ -1,7 +1,7 @@
 Hibernate Annotations Changelog
 ===============================
 
-3.4.0.CR2 (?)
+3.4.0.CR2 (29-07-2008)
 ----------------------
 
 ** Bug

Modified: annotations/trunk/doc/reference/en/master.xml
===================================================================
--- annotations/trunk/doc/reference/en/master.xml	2008-07-29 13:20:43 UTC (rev 14978)
+++ annotations/trunk/doc/reference/en/master.xml	2008-07-29 13:57:34 UTC (rev 14979)
@@ -12,7 +12,7 @@
 
     <subtitle>Reference Guide</subtitle>
 
-    <releaseinfo>3.4.0.CR1</releaseinfo>
+    <releaseinfo>3.4.0.CR2</releaseinfo>
 
     <mediaobject>
       <imageobject>

Modified: annotations/trunk/ivy.xml
===================================================================
--- annotations/trunk/ivy.xml	2008-07-29 13:20:43 UTC (rev 14978)
+++ annotations/trunk/ivy.xml	2008-07-29 13:57:34 UTC (rev 14979)
@@ -14,7 +14,7 @@
     <dependencies>
         <!-- compile time dependencies -->
         <dependency name="ejb3-persistence" rev="1.0.2.GA" conf="default->default"/>
-        <dependency name="commons-annotations" rev="3.1.0.CR1" conf="default->default"/>
+        <dependency name="commons-annotations" rev="3.1.0.CR2" conf="default->default"/>
         <dependency org="org.hibernate" name="hibernate-core" rev="3.3.0.CR1" conf="default->default"/>
         <dependency org="dom4j" name="dom4j" rev="1.6.1" conf="default->default"/>
         <dependency org="org.slf4j" name="slf4j-api" rev="1.4.2" conf="default->default"/>

Modified: annotations/trunk/pom.xml
===================================================================
--- annotations/trunk/pom.xml	2008-07-29 13:20:43 UTC (rev 14978)
+++ annotations/trunk/pom.xml	2008-07-29 13:57:34 UTC (rev 14979)
@@ -8,7 +8,7 @@
 	<groupId>org.hibernate</groupId>
 	<artifactId>hibernate-annotations</artifactId>
 	<packaging>jar</packaging>
-	<version>3.4.0.CR1</version>
+	<version>3.4.0.CR2</version>
 
 	<name>Hibernate Annotations</name>
 	<description>Annotations metadata for Hibernate</description>

Modified: annotations/trunk/readme.txt
===================================================================
--- annotations/trunk/readme.txt	2008-07-29 13:20:43 UTC (rev 14978)
+++ annotations/trunk/readme.txt	2008-07-29 13:57:34 UTC (rev 14979)
@@ -1,6 +1,6 @@
 Hibernate Annotations
 ==================================================
-Version: 3.4.0.CR1, 27.05.2008
+Version: 3.4.0.CR2, 29.07.2008
 
 THIS RELEASE OF HIBERNATE ANNOTATIONS REQUIRES HIBERNATE CORE 3.3 (and above)
 

Modified: annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java	2008-07-29 13:20:43 UTC (rev 14978)
+++ annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java	2008-07-29 13:57:34 UTC (rev 14979)
@@ -8,7 +8,7 @@
  * @author Emmanuel Bernard
  */
 public class Version {
-	public static final String VERSION = "3.4.0.CR1";
+	public static final String VERSION = "3.4.0.CR2";
 	private static Logger log = LoggerFactory.getLogger( Version.class );
 
 	static {

Modified: annotations/trunk/src/java/org/hibernate/cfg/search/HibernateSearchEventListenerRegister.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/cfg/search/HibernateSearchEventListenerRegister.java	2008-07-29 13:20:43 UTC (rev 14978)
+++ annotations/trunk/src/java/org/hibernate/cfg/search/HibernateSearchEventListenerRegister.java	2008-07-29 13:57:34 UTC (rev 14979)
@@ -18,7 +18,7 @@
 /**
  * Helper methods initializing Hibernate Search event listeners.
  * 
- * @deprecated as of release 3.4.0.CR1, replaced by Hibernate Search's {@link org.hibernate.search.cfg.EventListenerBoostrap}
+ * @deprecated as of release 3.4.0.CR2, replaced by Hibernate Search's {@link org.hibernate.search.cfg.EventListenerBoostrap}
  * @author Emmanuel Bernard
  * @author Hardy Ferentschik
  */
@@ -33,7 +33,7 @@
 	private static final String FULL_TEXT_INDEX_EVENT_LISTENER_CLASS = "org.hibernate.search.event.FullTextIndexEventListener";
 
 	/**
-	 * @deprecated as of release 3.4.0.CR1, replaced by Hibernate Search's {@link org.hibernate.search.cfg.EventListenerRegister#enableHibernateSearch(EventListeners, Properties)}
+	 * @deprecated as of release 3.4.0.CR2, replaced by Hibernate Search's {@link org.hibernate.search.cfg.EventListenerRegister#enableHibernateSearch(EventListeners, Properties)}
 	 */
 	@SuppressWarnings("unchecked")
 	@Deprecated 




More information about the hibernate-commits mailing list