You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2011/10/28 15:09:22 UTC

svn commit: r1190296 - in /lucene/dev/trunk: ./ lucene/ lucene/CHANGES.txt

Author: uschindler
Date: Fri Oct 28 13:09:22 2011
New Revision: 1190296

URL: http://svn.apache.org/viewvc?rev=1190296&view=rev
Log:
Merged revision(s) 1190293 from lucene/dev/branches/branch_3x:
LUCENE-3540: Fix error message in IndexFormatTooOldException and make use of IndexFormatTooNewException

Modified:
    lucene/dev/trunk/   (props changed)
    lucene/dev/trunk/lucene/   (props changed)
    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=1190296&r1=1190295&r2=1190296&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/CHANGES.txt (original)
+++ lucene/dev/trunk/lucene/CHANGES.txt Fri Oct 28 13:09:22 2011
@@ -695,6 +695,10 @@ Bug fixes
 * LUCENE-2633: PackedInts Packed32 and Packed64 did not support internal
   structures larger than 256MB (Toke Eskildsen via Mike McCandless)
 
+* LUCENE-3540: LUCENE-3255 dropped support for pre-1.9 indexes, but the
+  error message in IndexFormatTooOldException was incorrect. (Uwe Schindler,
+  Mike McCandless)
+
 New Features
 
 * LUCENE-3448: Added FixedBitSet.and(other/DISI), andNot(other/DISI).