mirror of https://github.com/apache/lucene.git
Add version 7.5.1
This commit is contained in:
parent
4f0320c3f3
commit
2ffcb878b4
|
@ -160,6 +160,9 @@ Optimizations
|
||||||
* LUCENE-8448: Boolean queries now propagates the mininum score to their sub-scorers.
|
* LUCENE-8448: Boolean queries now propagates the mininum score to their sub-scorers.
|
||||||
(Jim Ferenczi, Adrien Grand)
|
(Jim Ferenczi, Adrien Grand)
|
||||||
|
|
||||||
|
======================= Lucene 7.5.1 =======================
|
||||||
|
(No Changes)
|
||||||
|
|
||||||
======================= Lucene 7.5.0 =======================
|
======================= Lucene 7.5.0 =======================
|
||||||
|
|
||||||
API Changes:
|
API Changes:
|
||||||
|
|
|
@ -96,6 +96,13 @@ public final class Version {
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public static final Version LUCENE_7_5_0 = new Version(7, 5, 0);
|
public static final Version LUCENE_7_5_0 = new Version(7, 5, 0);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Match settings and bugs in Lucene's 7.5.1 release.
|
||||||
|
* @deprecated Use latest
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static final Version LUCENE_7_5_1 = new Version(7, 5, 1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Match settings and bugs in Lucene's 8.0.0 release.
|
* Match settings and bugs in Lucene's 8.0.0 release.
|
||||||
* <p>
|
* <p>
|
||||||
|
|
|
@ -71,6 +71,22 @@ Other Changes
|
||||||
java.time.DateTimeFormatter instead of Joda time (see upgrade notes). "Lenient" is enabled. Removed Joda Time dependency.
|
java.time.DateTimeFormatter instead of Joda time (see upgrade notes). "Lenient" is enabled. Removed Joda Time dependency.
|
||||||
(David Smiley, Bar Rotstein)
|
(David Smiley, Bar Rotstein)
|
||||||
|
|
||||||
|
================== 7.5.1 ==================
|
||||||
|
|
||||||
|
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
||||||
|
|
||||||
|
Versions of Major Components
|
||||||
|
---------------------
|
||||||
|
Apache Tika 1.18
|
||||||
|
Carrot2 3.16.0
|
||||||
|
Velocity 1.7 and Velocity Tools 2.0
|
||||||
|
Apache ZooKeeper 3.4.11
|
||||||
|
Jetty 9.4.11.v20180605
|
||||||
|
|
||||||
|
|
||||||
|
(No Changes)
|
||||||
|
|
||||||
|
|
||||||
================== 7.5.0 ==================
|
================== 7.5.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…
Reference in New Issue