mirror of https://github.com/apache/lucene.git
Add next major version 9.11.0
This commit is contained in:
parent
8bf10130e9
commit
314c553bdc
|
@ -178,6 +178,32 @@ Other
|
|||
|
||||
* GITHUB#13001: Put Thread#sleep() on the list of forbidden APIs. (Shubham Chaudhary)
|
||||
|
||||
======================== Lucene 9.11.0 =======================
|
||||
|
||||
API Changes
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
New Features
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
Improvements
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
Optimizations
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
Bug Fixes
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
Other
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
======================== Lucene 9.10.0 =======================
|
||||
|
||||
API Changes
|
||||
|
|
|
@ -133,9 +133,17 @@ public final class Version {
|
|||
/**
|
||||
* Match settings and bugs in Lucene's 9.10.0 release.
|
||||
*
|
||||
* @deprecated (9.11.0) Use latest
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated public static final Version LUCENE_9_10_0 = new Version(9, 10, 0);
|
||||
|
||||
/**
|
||||
* Match settings and bugs in Lucene's 9.11.0 release.
|
||||
* @deprecated Use latest
|
||||
*/
|
||||
@Deprecated public static final Version LUCENE_9_10_0 = new Version(9, 10, 0);
|
||||
@Deprecated
|
||||
public static final Version LUCENE_9_11_0 = new Version(9, 11, 0);
|
||||
|
||||
/**
|
||||
* Match settings and bugs in Lucene's 10.0.0 release.
|
||||
|
|
Loading…
Reference in New Issue