Skip to content

Commit 28bd476

Browse files
committed
Add next minor version 10.4.0
1 parent 878a3db commit 28bd476

File tree

3 files changed

+35
-4
lines changed

3 files changed

+35
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ apply from: file('gradle/globals.gradle')
4141
// Calculate project version:
4242
version = {
4343
// Release manager: update base version here after release:
44-
String baseVersion = '10.3.0'
44+
String baseVersion = '10.4.0'
4545

4646
// On a release explicitly set release version in one go:
4747
// -Dversion.release=x.y.z

lucene/CHANGES.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@ Lucene Change Log
33
For more information on past and future Lucene versions, please see:
44
http://s.apache.org/luceneversions
55

6+
======================= Lucene 10.4.0 =======================
7+
8+
API Changes
9+
---------------------
10+
(No changes)
11+
12+
New Features
13+
---------------------
14+
(No changes)
15+
16+
Improvements
17+
---------------------
18+
(No changes)
19+
20+
Optimizations
21+
---------------------
22+
(No changes)
23+
24+
Bug Fixes
25+
---------------------
26+
(No changes)
27+
28+
Other
29+
---------------------
30+
(No changes)
31+
632
======================= Lucene 10.3.0 =======================
733

834
API Changes

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,11 +207,16 @@ public final class Version {
207207
@Deprecated public static final Version LUCENE_10_2_2 = new Version(10, 2, 2);
208208

209209
/**
210-
* Match settings and bugs in Lucene's 10.3.0 release.
210+
* @deprecated (10.4.0) Use latest
211+
*/
212+
@Deprecated public static final Version LUCENE_10_3_0 = new Version(10, 3, 0);
213+
214+
/**
215+
* Match settings and bugs in Lucene's 10.4.0 release.
211216
*
212217
* <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.
213218
*/
214-
public static final Version LUCENE_10_3_0 = new Version(10, 3, 0);
219+
public static final Version LUCENE_10_4_0 = new Version(10, 4, 0);
215220

216221
// To add a new version:
217222
// * Only add above this comment
@@ -227,7 +232,7 @@ public final class Version {
227232
* <b>re-test your entire application</b> to ensure it behaves as expected, as some defaults may
228233
* have changed and may break functionality in your application.
229234
*/
230-
public static final Version LATEST = LUCENE_10_3_0;
235+
public static final Version LATEST = LUCENE_10_4_0;
231236

232237
/**
233238
* Constant for backwards compatibility.

0 commit comments

Comments
 (0)