mirror of https://github.com/apache/lucene.git
Add bugfix version 8.11.1
This commit is contained in:
parent
5ddc7ebb83
commit
5694fa840e
|
@ -546,6 +546,12 @@ Other
|
|||
* LUCENE-10024: Catch NoSuchFileException when opening index directory with Luke.
|
||||
(Michael Wechner, Tomoko Uchida)
|
||||
|
||||
======================= Lucene 8.11.1 =======================
|
||||
|
||||
Bug Fixes
|
||||
---------------------
|
||||
* SOLR-15843: Update Log4J to 2.16 (Mike Drob, janhoy)
|
||||
|
||||
======================= Lucene 8.11.0 =======================
|
||||
|
||||
API Changes
|
||||
|
|
|
@ -189,9 +189,18 @@ public final class Version {
|
|||
* Match settings and bugs in Lucene's 8.11.0 release.
|
||||
*
|
||||
* @deprecated Use latest
|
||||
* @deprecated (8.11.1) Use latest
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated public static final Version LUCENE_8_11_0 = new Version(8, 11, 0);
|
||||
|
||||
/**
|
||||
* Match settings and bugs in Lucene's 8.11.1 release.
|
||||
* @deprecated Use latest
|
||||
*/
|
||||
@Deprecated
|
||||
public static final Version LUCENE_8_11_1 = new Version(8, 11, 1);
|
||||
|
||||
/**
|
||||
* Match settings and bugs in Lucene's 8.12.0 release.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue