mirror of
https://github.com/apache/lucene.git
synced 2025-03-01 05:49:33 +00:00
Add version 6.0.1
This commit is contained in:
parent
a9cc7b63d7
commit
44e60b3e25
@ -137,6 +137,9 @@ Other
|
|||||||
* LUCENE-7263: Make queryparser/xml/CoreParser's SpanQueryBuilderFactory
|
* LUCENE-7263: Make queryparser/xml/CoreParser's SpanQueryBuilderFactory
|
||||||
accessible to deriving classes. (Daniel Collins via Christine Poerschke)
|
accessible to deriving classes. (Daniel Collins via Christine Poerschke)
|
||||||
|
|
||||||
|
======================= Lucene 6.0.1 =======================
|
||||||
|
(No Changes)
|
||||||
|
|
||||||
======================= Lucene 6.0.0 =======================
|
======================= Lucene 6.0.0 =======================
|
||||||
|
|
||||||
System Requirements
|
System Requirements
|
||||||
|
@ -33,14 +33,18 @@ import java.util.Locale;
|
|||||||
public final class Version {
|
public final class Version {
|
||||||
|
|
||||||
/** Match settings and bugs in Lucene's 6.0 release.
|
/** Match settings and bugs in Lucene's 6.0 release.
|
||||||
* <p>
|
|
||||||
* Use this to get the latest & greatest settings, bug
|
|
||||||
* fixes, etc, for Lucene.
|
|
||||||
* @deprecated (7.0.0) Use latest
|
* @deprecated (7.0.0) Use latest
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public static final Version LUCENE_6_0_0 = new Version(6, 0, 0);
|
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.
|
* Match settings and bugs in Lucene's 6.1.0 release.
|
||||||
* @deprecated Use latest
|
* @deprecated Use latest
|
||||||
@ -50,6 +54,9 @@ public final class Version {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Match settings and bugs in Lucene's 7.0.0 release.
|
* Match settings and bugs in Lucene's 7.0.0 release.
|
||||||
|
* <p>
|
||||||
|
* Use this to get the latest & greatest settings, bug
|
||||||
|
* fixes, etc, for Lucene.
|
||||||
*/
|
*/
|
||||||
public static final Version LUCENE_7_0_0 = new Version(7, 0, 0);
|
public static final Version LUCENE_7_0_0 = new Version(7, 0, 0);
|
||||||
|
|
||||||
|
@ -299,6 +299,9 @@ Other Changes
|
|||||||
|
|
||||||
* SOLR-9072: Migrate morphline-core tests to SolrCloudTestCase. (Alan Woodward)
|
* SOLR-9072: Migrate morphline-core tests to SolrCloudTestCase. (Alan Woodward)
|
||||||
|
|
||||||
|
================== 6.0.1 ==================
|
||||||
|
(No Changes)
|
||||||
|
|
||||||
================== 6.0.0 ==================
|
================== 6.0.0 ==================
|
||||||
|
|
||||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release
|
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release
|
||||||
|
Loading…
x
Reference in New Issue
Block a user