Skip to content

Commit 7ebdb93

Browse files
committed
Add next minor version 10.5.0
1 parent 16f83c9 commit 7ebdb93

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

lucene/CHANGES.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,32 @@ Other
170170
* GITHUB#14607: Index open performs version check on each segment, ignores indexCreatedVersionMajor (Rahul Goswami)
171171
* GITHUB#15454: Restore binary readability for 8.x indexes like previously and throw IndexFormatTooOldException for an older default codec not found on classpath (Rahul Goswami)
172172

173+
======================= Lucene 10.5.0 =======================
174+
175+
API Changes
176+
---------------------
177+
(No changes)
178+
179+
New Features
180+
---------------------
181+
(No changes)
182+
183+
Improvements
184+
---------------------
185+
(No changes)
186+
187+
Optimizations
188+
---------------------
189+
(No changes)
190+
191+
Bug Fixes
192+
---------------------
193+
(No changes)
194+
195+
Other
196+
---------------------
197+
(No changes)
198+
173199
======================= Lucene 10.4.0 =======================
174200

175201
API Changes

lucene/core/src/java/org/apache/lucene/util/Version.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,16 @@ public final class Version {
8888
* Match settings and bugs in Lucene's 10.4.0 release.
8989
*
9090
* @deprecated Use latest
91+
* @deprecated (10.5.0) Use latest
9192
*/
9293
@Deprecated public static final Version LUCENE_10_4_0 = new Version(10, 4, 0);
9394

95+
/**
96+
* Match settings and bugs in Lucene's 10.5.0 release.
97+
* @deprecated Use latest
98+
*/
99+
@Deprecated public static final Version LUCENE_10_5_0 = new Version(10, 5, 0);
100+
94101
/**
95102
* Match settings and bugs in Lucene's 11.0.0 release.
96103
*

0 commit comments

Comments
 (0)