Skip to content

Commit 5632c93

Browse files
committed
Add next bugfix version 10.3.1
1 parent 47ab5a2 commit 5632c93

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-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.3.1'
4545

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

lucene/CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ 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.3.1 =======================
7+
8+
Bug Fixes
9+
---------------------
10+
(No changes)
11+
612
======================= Lucene 10.3.0 =======================
713

814
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.3.1) 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.3.1 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_3_1 = new Version(10, 3, 1);
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_3_1;
231236

232237
/**
233238
* Constant for backwards compatibility.

0 commit comments

Comments
 (0)