Add bugfix version 8.11.1

This commit is contained in:
Jan Høydahl 2021-12-16 12:13:06 +01:00
parent 5ddc7ebb83
commit 5694fa840e
2 changed files with 15 additions and 0 deletions

View File

@ -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

View File

@ -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.
*