Add version 6.0.1

This commit is contained in:
Steve Rowe 2016-05-13 18:45:59 -04:00
parent a9cc7b63d7
commit 44e60b3e25
3 changed files with 16 additions and 3 deletions

View File

@ -137,6 +137,9 @@ Other
* LUCENE-7263: Make queryparser/xml/CoreParser's SpanQueryBuilderFactory
accessible to deriving classes. (Daniel Collins via Christine Poerschke)
======================= Lucene 6.0.1 =======================
(No Changes)
======================= Lucene 6.0.0 =======================
System Requirements

View File

@ -33,14 +33,18 @@ import java.util.Locale;
public final class Version {
/** Match settings and bugs in Lucene's 6.0 release.
* <p>
* Use this to get the latest &amp; greatest settings, bug
* fixes, etc, for Lucene.
* @deprecated (7.0.0) Use latest
*/
@Deprecated
public static final Version LUCENE_6_0_0 = new Version(6, 0, 0);
/**
* Match settings and bugs in Lucene's 6.0.1 release.
* @deprecated Use latest
*/
@Deprecated
public static final Version LUCENE_6_0_1 = new Version(6, 0, 1);
/**
* Match settings and bugs in Lucene's 6.1.0 release.
* @deprecated Use latest
@ -50,6 +54,9 @@ public final class Version {
/**
* Match settings and bugs in Lucene's 7.0.0 release.
* <p>
* Use this to get the latest &amp; greatest settings, bug
* fixes, etc, for Lucene.
*/
public static final Version LUCENE_7_0_0 = new Version(7, 0, 0);

View File

@ -299,6 +299,9 @@ Other Changes
* SOLR-9072: Migrate morphline-core tests to SolrCloudTestCase. (Alan Woodward)
================== 6.0.1 ==================
(No Changes)
================== 6.0.0 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release