mirror of https://github.com/apache/lucene.git
Add next minor version 9.3.0
This commit is contained in:
parent
ba4bc04271
commit
fdbb76a8d7
|
@ -81,6 +81,32 @@ Other
|
||||||
|
|
||||||
* GITHUB#977, LUCENE-9500: Remove the deflater hack introduced because of JDK-8252739 (Uwe Schindler)
|
* GITHUB#977, LUCENE-9500: Remove the deflater hack introduced because of JDK-8252739 (Uwe Schindler)
|
||||||
|
|
||||||
|
======================== Lucene 9.4.0 =======================
|
||||||
|
|
||||||
|
API Changes
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
|
New Features
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
|
Improvements
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
|
Optimizations
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
|
Other
|
||||||
|
---------------------
|
||||||
|
(No changes)
|
||||||
|
|
||||||
======================== Lucene 9.3.0 =======================
|
======================== Lucene 9.3.0 =======================
|
||||||
|
|
||||||
API Changes
|
API Changes
|
||||||
|
|
|
@ -52,6 +52,13 @@ public final class Version {
|
||||||
*/
|
*/
|
||||||
@Deprecated public static final Version LUCENE_9_2_0 = new Version(9, 2, 0);
|
@Deprecated public static final Version LUCENE_9_2_0 = new Version(9, 2, 0);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Match settings and bugs in Lucene's 9.3.0 release.
|
||||||
|
*
|
||||||
|
* @deprecated (9.4.0) Use latest
|
||||||
|
*/
|
||||||
|
@Deprecated public static final Version LUCENE_9_3_0 = new Version(9, 3, 0);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Match settings and bugs in Lucene's 10.0.0 release.
|
* Match settings and bugs in Lucene's 10.0.0 release.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue