Author: epbernard
Date: 2009-05-28 11:03:17 -0400 (Thu, 28 May 2009)
New Revision: 16629
Modified:
search/branches/Branch_3_1/changelog.txt
search/branches/Branch_3_1/pom.xml
search/branches/Branch_3_1/readme.txt
search/branches/Branch_3_1/src/main/docbook/en-US/master.xml
search/branches/Branch_3_1/src/main/docbook/en-US/modules/getting-started.xml
search/branches/Branch_3_1/src/main/java/org/hibernate/search/Version.java
Log:
release of HSearch 3.1.1
Modified: search/branches/Branch_3_1/changelog.txt
===================================================================
--- search/branches/Branch_3_1/changelog.txt 2009-05-28 09:09:50 UTC (rev 16628)
+++ search/branches/Branch_3_1/changelog.txt 2009-05-28 15:03:17 UTC (rev 16629)
@@ -1,8 +1,33 @@
Hibernate Search Changelog
==========================
+3.1.1.GA (28-05-2009)
+---------------------
+
+** Bug
+ * [HSEARCH-178] - Out of transaction work causes collection lazy loading to throw
AssertionFailure
+ * [HSEARCH-310] - Out of Memory on ScrollableResults
+ * [HSEARCH-325] - FullTextQuery.iterate() skips last result.
+ * [HSEARCH-330] - NegativeArraySizeException if you use
FullTextQuery.setMaxResults(Integer.MAX_VALUE)
+ * [HSEARCH-338] - ScrollableResults initial position not coherent to core Hibernate
+ * [HSEARCH-339] - ScrollableResults may return unmanaged entities from it's own
cache
+ * [HSEARCH-342] - Delete on unindexed entities referenced by indexed entities with
ContainedIn annotation failed
+ * [HSEARCH-355] - FilterOptimizationHelper was improperly using method overloading
+ * [HSEARCH-357] - IdBridge being applied on null entity during purgeAll()
+ * [HSEARCH-360] - Hibernate Search 3.1.0GA Bugs after HSEARCH-160
+
+
+** Improvement
+ * [HSEARCH-340] - ScrollableResults exploits batch loading for backwards and random
order scrolling
+ * [HSEARCH-369] - typos in documentation
+
+
+** Task
+ * [HSEARCH-348] - Upgrade to Lucene 2.4.1
+
+
3.1.0.GA (4-12-2008)
-------------------------
+--------------------
** Bug
* [HSEARCH-233] - EntityNotFoundException during indexing
Modified: search/branches/Branch_3_1/pom.xml
===================================================================
--- search/branches/Branch_3_1/pom.xml 2009-05-28 09:09:50 UTC (rev 16628)
+++ search/branches/Branch_3_1/pom.xml 2009-05-28 15:03:17 UTC (rev 16629)
@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-search</artifactId>
- <version>3.1.1-SNAPSHOT</version>
+ <version>3.1.1.GA</version>
<name>Hibernate Search</name>
<description>Hibernate Search</description>
<url>http://search.hibernate.org</url>
Modified: search/branches/Branch_3_1/readme.txt
===================================================================
--- search/branches/Branch_3_1/readme.txt 2009-05-28 09:09:50 UTC (rev 16628)
+++ search/branches/Branch_3_1/readme.txt 2009-05-28 15:03:17 UTC (rev 16629)
@@ -1,6 +1,6 @@
Hibernate Search
==================================================
-Version: 3.1.0.GA, 4.12.2008
+Version: 3.1.1.GA, 28.05.2009
Description
-----------
Modified: search/branches/Branch_3_1/src/main/docbook/en-US/master.xml
===================================================================
--- search/branches/Branch_3_1/src/main/docbook/en-US/master.xml 2009-05-28 09:09:50 UTC
(rev 16628)
+++ search/branches/Branch_3_1/src/main/docbook/en-US/master.xml 2009-05-28 15:03:17 UTC
(rev 16629)
@@ -25,7 +25,7 @@
-->
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY versionNumber "3.1.0.GA">
+<!ENTITY versionNumber "3.1.1.GA">
<!ENTITY copyrightYear "2004">
<!ENTITY copyrightHolder "Red Hat Middleware, LLC.">
]>
Modified: search/branches/Branch_3_1/src/main/docbook/en-US/modules/getting-started.xml
===================================================================
---
search/branches/Branch_3_1/src/main/docbook/en-US/modules/getting-started.xml 2009-05-28
09:09:50 UTC (rev 16628)
+++
search/branches/Branch_3_1/src/main/docbook/en-US/modules/getting-started.xml 2009-05-28
15:03:17 UTC (rev 16629)
@@ -129,7 +129,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-search</artifactId>
- <version>3.1.0.GA</version>
+ <version>3.1.1.GA</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
@@ -154,7 +154,7 @@
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-snowball</artifactId>
- <version>2.4.0</version>
+ <version>2.4.1</version>
</dependency>
</programlisting>
</example>
@@ -639,7 +639,7 @@
<programlisting>mvn archetype:create \
-DarchetypeGroupId=org.hibernate \
-DarchetypeArtifactId=hibernate-search-quickstart \
- -DarchetypeVersion=3.1.0.GA \
+ -DarchetypeVersion=3.1.1.GA \
-DgroupId=my.company -DartifactId=quickstart</programlisting>
</example>
Modified: search/branches/Branch_3_1/src/main/java/org/hibernate/search/Version.java
===================================================================
--- search/branches/Branch_3_1/src/main/java/org/hibernate/search/Version.java 2009-05-28
09:09:50 UTC (rev 16628)
+++ search/branches/Branch_3_1/src/main/java/org/hibernate/search/Version.java 2009-05-28
15:03:17 UTC (rev 16629)
@@ -8,7 +8,7 @@
*/
public class Version {
- public static final String VERSION = "3.1.1-SNAPSHOT";
+ public static final String VERSION = "3.1.1.GA";
static {
LoggerFactory.make().info( "Hibernate Search {}", VERSION );