mirror of https://github.com/apache/lucene.git
Add bugfix version 8.5.1
This commit is contained in:
parent
d5720d6442
commit
8a88ab0e7c
|
@ -197,6 +197,12 @@ Other
|
||||||
* LUCENE-9271: ByteBufferIndexInput was refactored to work on top of the
|
* LUCENE-9271: ByteBufferIndexInput was refactored to work on top of the
|
||||||
ByteBuffer API. (Adrien Grand)
|
ByteBuffer API. (Adrien Grand)
|
||||||
|
|
||||||
|
======================= Lucene 8.5.1 =======================
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
======================= Lucene 8.5.0 =======================
|
======================= Lucene 8.5.0 =======================
|
||||||
|
|
||||||
API Changes
|
API Changes
|
||||||
|
|
|
@ -95,6 +95,13 @@ public final class Version {
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public static final Version LUCENE_8_5_0 = new Version(8, 5, 0);
|
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.
|
* Match settings and bugs in Lucene's 9.0.0 release.
|
||||||
* <p>
|
* <p>
|
||||||
|
|
|
@ -155,6 +155,14 @@ Other Changes
|
||||||
removed from solr-core in favor of SolrNamedThreadFactory in solrj package and all solr-core classes now use
|
removed from solr-core in favor of SolrNamedThreadFactory in solrj package and all solr-core classes now use
|
||||||
SolrNamedThreadFactory. (Andras Salamon, shalin)
|
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 ==================
|
================== 8.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