mirror of https://github.com/apache/lucene.git
Add next minor version 9.12.0
This commit is contained in:
parent
b3dc9153bb
commit
9a3dbd5dd7
|
@ -233,6 +233,32 @@ Other
|
|||
|
||||
* GITHUB#13332: Improve MissingDoclet linter to check records correctly. (Uwe Schindler)
|
||||
|
||||
======================== Lucene 9.12.0 =======================
|
||||
|
||||
API Changes
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
New Features
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
Improvements
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
Optimizations
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
Bug Fixes
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
Other
|
||||
---------------------
|
||||
(No changes)
|
||||
|
||||
======================== Lucene 9.11.0 =======================
|
||||
|
||||
API Changes
|
||||
|
|
|
@ -141,9 +141,17 @@ public final class Version {
|
|||
* Match settings and bugs in Lucene's 9.11.0 release.
|
||||
*
|
||||
* @deprecated Use latest
|
||||
* @deprecated (9.12.0) Use latest
|
||||
*/
|
||||
@Deprecated public static final Version LUCENE_9_11_0 = new Version(9, 11, 0);
|
||||
|
||||
/**
|
||||
* Match settings and bugs in Lucene's 9.12.0 release.
|
||||
*
|
||||
* @deprecated Use latest
|
||||
*/
|
||||
@Deprecated public static final Version LUCENE_9_12_0 = new Version(9, 12, 0);
|
||||
|
||||
/**
|
||||
* Match settings and bugs in Lucene's 10.0.0 release.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue