Add next major version 9.11.0

This commit is contained in:
Adrien Grand 2024-02-12 14:36:17 +01:00
parent 8bf10130e9
commit 314c553bdc
2 changed files with 35 additions and 1 deletions

View File

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

View File

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