Add bugfix version 8.5.1

This commit is contained in:
iverase 2020-04-16 09:27:06 +02:00
parent d5720d6442
commit 8a88ab0e7c
3 changed files with 21 additions and 0 deletions

View File

@ -197,6 +197,12 @@ Other
* LUCENE-9271: ByteBufferIndexInput was refactored to work on top of the
ByteBuffer API. (Adrien Grand)
======================= Lucene 8.5.1 =======================
Bug Fixes
---------------------
(No changes)
======================= Lucene 8.5.0 =======================
API Changes

View File

@ -95,6 +95,13 @@ public final class Version {
@Deprecated
public static final Version LUCENE_8_5_0 = new Version(8, 5, 0);
/**
* Match settings and bugs in Lucene's 8.5.1 release.
* @deprecated Use latest
*/
@Deprecated
public static final Version LUCENE_8_5_1 = new Version(8, 5, 1);
/**
* Match settings and bugs in Lucene's 9.0.0 release.
* <p>

View File

@ -155,6 +155,14 @@ Other Changes
removed from solr-core in favor of SolrNamedThreadFactory in solrj package and all solr-core classes now use
SolrNamedThreadFactory. (Andras Salamon, shalin)
================== 8.5.1 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
Bug Fixes
---------------------
(No changes)
================== 8.5.0 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.