Skip to content

Commit f0d3bbf

Browse files
committed
Add next minor version 10.4.0
1 parent 6182343 commit f0d3bbf

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
@@ -106,6 +106,32 @@ Other
106106
* GITHUB#14761: Use more Comparators for PriorityQueue implementations. (Simon Cooper)
107107
* GITHUB#14817: Refactor some complex uses of PriorityQueue to use Comparators. (Simon Cooper)
108108

109+
======================= Lucene 10.4.0 =======================
110+
111+
API Changes
112+
---------------------
113+
(No changes)
114+
115+
New Features
116+
---------------------
117+
(No changes)
118+
119+
Improvements
120+
---------------------
121+
(No changes)
122+
123+
Optimizations
124+
---------------------
125+
(No changes)
126+
127+
Bug Fixes
128+
---------------------
129+
(No changes)
130+
131+
Other
132+
---------------------
133+
(No changes)
134+
109135
======================= Lucene 10.3.0 =======================
110136

111137
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
@@ -70,6 +70,13 @@ public final class Version {
7070
*/
7171
@Deprecated public static final Version LUCENE_10_3_0 = new Version(10, 3, 0);
7272

73+
/**
74+
* Match settings and bugs in Lucene's 10.4.0 release.
75+
*
76+
* @deprecated Use latest
77+
*/
78+
@Deprecated public static final Version LUCENE_10_4_0 = new Version(10, 4, 0);
79+
7380
/**
7481
* Match settings and bugs in Lucene's 11.0.0 release.
7582
*

0 commit comments

Comments
 (0)