Add next minor version 10.1.0

This commit is contained in:
ChrisHegarty 2024-09-30 11:38:17 +01:00
parent 5ad0451666
commit 4e1c8d20ce
2 changed files with 34 additions and 1 deletions

View File

@ -29,6 +29,32 @@ Other
---------------------
(No changes)
======================= Lucene 10.1.0 =======================
API Changes
---------------------
(No changes)
New Features
---------------------
(No changes)
Improvements
---------------------
(No changes)
Optimizations
---------------------
(No changes)
Bug Fixes
---------------------
(No changes)
Other
---------------------
(No changes)
======================= Lucene 10.0.0 =======================
API Changes

View File

@ -168,10 +168,17 @@ public final class Version {
@Deprecated public static final Version LUCENE_9_13_0 = new Version(9, 13, 0);
/**
* @deprecated (11.0.0) Use latest
* @deprecated Use latest
*/
@Deprecated public static final Version LUCENE_10_0_0 = new Version(10, 0, 0);
/**
* Match settings and bugs in Lucene's 10.1.0 release.
*
* @deprecated Use latest
*/
@Deprecated public static final Version LUCENE_10_1_0 = new Version(10, 1, 0);
/**
* Match settings and bugs in Lucene's 11.0.0 release.
*