[hibernate-commits] Hibernate SVN: r13995 - in search/trunk: src/java/org/hibernate/search and 1 other directory.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Sep 4 00:03:11 EDT 2007


Author: epbernard
Date: 2007-09-04 00:03:11 -0400 (Tue, 04 Sep 2007)
New Revision: 13995

Modified:
   search/trunk/build.xml
   search/trunk/changelog.txt
   search/trunk/readme.txt
   search/trunk/src/java/org/hibernate/search/Version.java
Log:
Release

Modified: search/trunk/build.xml
===================================================================
--- search/trunk/build.xml	2007-09-04 03:36:39 UTC (rev 13994)
+++ search/trunk/build.xml	2007-09-04 04:03:11 UTC (rev 13995)
@@ -17,7 +17,7 @@
 	<!-- Name of project and version, used to create filenames -->
 	<property name="Name" value="Hibernate Search"/>
 	<property name="name" value="hibernate-search"/>
-	<property name="version" value="3.0.0.Beta4"/>
+	<property name="version" value="3.0.0.CR1"/>
 	<property name="javadoc.packagenames" value="org.hibernate.search.*"/>
 	<property name="copy.test" value="true"/>
 	<property name="javac.source" value="1.5"/>

Modified: search/trunk/changelog.txt
===================================================================
--- search/trunk/changelog.txt	2007-09-04 03:36:39 UTC (rev 13994)
+++ search/trunk/changelog.txt	2007-09-04 04:03:11 UTC (rev 13995)
@@ -1,6 +1,27 @@
 Hibernate Search Changelog
 ==========================
 
+3.0.0.CR1 (4-09-2007)
+---------------------
+
+** Bug
+    * [HSEARCH-108] - id of embedded object is not indexed when using @IndexedEmbedded
+    * [HSEARCH-109] - Lazy loaded entity could not be indexed
+    * [HSEARCH-110] - ScrollableResults does not obey out of bounds rules (John Griffin)
+    * [HSEARCH-112] - Unkown @FullTextFilter  when attempting to associate a filter
+
+** Deprecation
+    * [HSEARCH-113] - Remove @Text, @Keyword and @Unstored (old mapping annotations)
+
+** Improvement
+    * [HSEARCH-107] - DirectoryProvider should have a start() method
+
+** New Feature
+    * [HSEARCH-14] - introduce fetch_size for Hibernate Search scrollable resultsets (John Griffin)
+    * [HSEARCH-69] - Ability to purge an index by class (John Griffin)
+    * [HSEARCH-111] - Ability to disable event based indexing (for read only or batch based indexing)
+
+
 3.0.0.Beta4 (1-08-2007)
 -----------------------
 

Modified: search/trunk/readme.txt
===================================================================
--- search/trunk/readme.txt	2007-09-04 03:36:39 UTC (rev 13994)
+++ search/trunk/readme.txt	2007-09-04 04:03:11 UTC (rev 13995)
@@ -1,6 +1,6 @@
 Hibernate Search
 ==================================================
-Version: 3.0.0.Beta4, 1.08.2007
+Version: 3.0.0.CR1, 4.09.2007
 
 Description
 -----------

Modified: search/trunk/src/java/org/hibernate/search/Version.java
===================================================================
--- search/trunk/src/java/org/hibernate/search/Version.java	2007-09-04 03:36:39 UTC (rev 13994)
+++ search/trunk/src/java/org/hibernate/search/Version.java	2007-09-04 04:03:11 UTC (rev 13995)
@@ -10,7 +10,7 @@
  * @author Emmanuel Bernard
  */
 public class Version {
-	public static final String VERSION = "3.0.0.Beta4"; // + new Date();
+	public static final String VERSION = "3.0.0.CR1"; // + new Date();
 	private static Log log = LogFactory.getLog( Version.class );
 
 	static {




More information about the hibernate-commits mailing list