Author: epbernard
Date: 2007-05-30 22:53:19 -0400 (Wed, 30 May 2007)
New Revision: 11601
Modified:
trunk/HibernateExt/search/build.xml
trunk/HibernateExt/search/changelog.txt
trunk/HibernateExt/search/readme.txt
trunk/HibernateExt/search/src/java/org/hibernate/search/Version.java
Log:
Release
Modified: trunk/HibernateExt/search/build.xml
===================================================================
--- trunk/HibernateExt/search/build.xml 2007-05-31 02:48:08 UTC (rev 11600)
+++ trunk/HibernateExt/search/build.xml 2007-05-31 02:53:19 UTC (rev 11601)
@@ -16,7 +16,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.Beta1"/>
+ <property name="version" value="3.0.0.Beta2"/>
<property name="javadoc.packagenames"
value="org.hibernate.search.*"/>
<property name="copy.test" value="true"/>
<property name="javac.source" value="1.5"/>
Modified: trunk/HibernateExt/search/changelog.txt
===================================================================
--- trunk/HibernateExt/search/changelog.txt 2007-05-31 02:48:08 UTC (rev 11600)
+++ trunk/HibernateExt/search/changelog.txt 2007-05-31 02:53:19 UTC (rev 11601)
@@ -1,6 +1,34 @@
Hibernate Search Changelog
==========================
+3.0.0.Beta2 (31-05-2007)
+------------------------
+
+** Bug
+ * [HSEARCH-37] - Verify that Serializable return type are not resolved by
StringBridge built in type
+ * [HSEARCH-39] - event listener declaration example is wrong
+ * [HSEARCH-44] - Build the Lucene Document in the beforeComplete transaction phase
+ * [HSEARCH-50] - Null Booleans lead to NPE
+ * [HSEARCH-59] - Unable to index @indexEmbedded object through session.index when
object is lazy and field access is used in object
+
+
+** Improvement
+ * [HSEARCH-36] - Meaningful exception message when Search Listeners are not
initialized
+ * [HSEARCH-38] - Make the @IndexedEmbedded documentation example easier to
understand
+ * [HSEARCH-51] - Optimization: Use a query rather than batch-size to load objects
when a single entity (hierarchy) is expected
+ * [HSEARCH-63] - rename query.resultSize() to getResultSize()
+
+** New Feature
+ * [HSEARCH-4] - Be able to use a Lucene Sort on queries (Hardy Ferentschik)
+ * [HSEARCH-13] - Cache IndexReaders per SearchFactory
+ * [HSEARCH-40] - Be able to embed collections in lucene index (@IndexedEmbeddable in
collections)
+ * [HSEARCH-43] - Expose resultSize and do not load object when only resultSize is
retrieved
+ * [HSEARCH-52] - Ability to load more efficiently an object graph from a lucene query
by customizing the fetch modes
+ * [HSEARCH-53] - Add support for projection (ie read the data from the index only)
+ * [HSEARCH-61] - Move from MultiSearcher to MultiReader
+ * [HSEARCH-62] - Support pluggable ReaderProvider strategies
+
+
3.0.0.Beta1 (19-03-2007)
------------------------
Modified: trunk/HibernateExt/search/readme.txt
===================================================================
--- trunk/HibernateExt/search/readme.txt 2007-05-31 02:48:08 UTC (rev 11600)
+++ trunk/HibernateExt/search/readme.txt 2007-05-31 02:53:19 UTC (rev 11601)
@@ -1,6 +1,6 @@
Hibernate Search
==================================================
-Version: 3.0.0.Beta1, 19.03.2007
+Version: 3.0.0.Beta2, 31.05.2007
Description
-----------
Modified: trunk/HibernateExt/search/src/java/org/hibernate/search/Version.java
===================================================================
--- trunk/HibernateExt/search/src/java/org/hibernate/search/Version.java 2007-05-31
02:48:08 UTC (rev 11600)
+++ trunk/HibernateExt/search/src/java/org/hibernate/search/Version.java 2007-05-31
02:53:19 UTC (rev 11601)
@@ -10,7 +10,7 @@
* @author Emmanuel Bernard
*/
public class Version {
- public static final String VERSION = "3.0.0.Beta2-SNAPSHOT" + new Date();
+ public static final String VERSION = "3.0.0.Beta2" + new Date();
private static Log log = LogFactory.getLog( Version.class );
static {
Show replies by date