You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2014/01/09 14:30:50 UTC

svn commit: r1556802 - /lucene/dev/trunk/lucene/CHANGES.txt

Author: rmuir
Date: Thu Jan  9 13:30:50 2014
New Revision: 1556802

URL: http://svn.apache.org/r1556802
Log:
fix these as API changes (like other 4.x changes)

Modified:
    lucene/dev/trunk/lucene/CHANGES.txt

Modified: lucene/dev/trunk/lucene/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/CHANGES.txt?rev=1556802&r1=1556801&r2=1556802&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/CHANGES.txt (original)
+++ lucene/dev/trunk/lucene/CHANGES.txt Thu Jan  9 13:30:50 2014
@@ -6,30 +6,6 @@ http://s.apache.org/luceneversions
 
 ======================= Lucene 5.0.0 =======================
 
-Changes in backwards compatibility policy
-
-* LUCENE-4535: oal.util.FilterIterator is now an internal API.
-  (Adrien Grand)
-
-* LUCENE-3312: The API of oal.document was restructured to
-  differentiate between stored documents and indexed documents.
-  IndexReader.document(int) now returns StoredDocument
-  instead of Document. In most cases a simple replacement
-  of the return type is enough to upgrade (see MIGRATE.txt).
-  (Nikola Tanković, Uwe Schindler, Chris Male, Mike McCandless,
-  Robert Muir)
-
-* LUCENE-4924: DocIdSetIterator.docID() must now return -1 when the iterator is
-  not positioned. This change affects all classes that inherit from
-  DocIdSetIterator, including DocsEnum and DocsAndPositionsEnum. (Adrien Grand)
-
-* LUCENE-5127: Reduce RAM usage of FixedGapTermsIndex. Remove 
-  IndexWriterConfig.setTermIndexInterval, IndexWriterConfig.setReaderTermsIndexDivisor,
-  and termsIndexDivisor from StandardDirectoryReader. These options have been no-ops
-  with the default codec since Lucene 4.0. If you want to configure the interval for
-  this term index, pass it directly in your codec, where it can also be configured
-  per-field. (Robert Muir)
-
 New Features
 
 * LUCENE-4747: Move to Java 7 as minimum Java version.
@@ -54,6 +30,30 @@ New Features
   PushPostingsWriterBase for single-pass push of docs/positions to the
   postings format.  (Mike McCandless)
 
+API Changes
+
+* LUCENE-4535: oal.util.FilterIterator is now an internal API.
+  (Adrien Grand)
+
+* LUCENE-3312: The API of oal.document was restructured to
+  differentiate between stored documents and indexed documents.
+  IndexReader.document(int) now returns StoredDocument
+  instead of Document. In most cases a simple replacement
+  of the return type is enough to upgrade (see MIGRATE.txt).
+  (Nikola Tanković, Uwe Schindler, Chris Male, Mike McCandless,
+  Robert Muir)
+
+* LUCENE-4924: DocIdSetIterator.docID() must now return -1 when the iterator is
+  not positioned. This change affects all classes that inherit from
+  DocIdSetIterator, including DocsEnum and DocsAndPositionsEnum. (Adrien Grand)
+
+* LUCENE-5127: Reduce RAM usage of FixedGapTermsIndex. Remove 
+  IndexWriterConfig.setTermIndexInterval, IndexWriterConfig.setReaderTermsIndexDivisor,
+  and termsIndexDivisor from StandardDirectoryReader. These options have been no-ops
+  with the default codec since Lucene 4.0. If you want to configure the interval for
+  this term index, pass it directly in your codec, where it can also be configured
+  per-field. (Robert Muir)
+
 * LUCENE-5388: Remove Reader from Tokenizer's constructor. 
   (Benson Margulies via Robert Muir - pull request #16)