Skip to content

Commit 1a22dca

Browse files
committed
Add next bugfix version 10.2.1
1 parent 5dc9c12 commit 1a22dca

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.2.0'
44+
String baseVersion = '10.2.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.2.1 =======================
7+
8+
Bug Fixes
9+
---------------------
10+
(No changes)
11+
612
======================= Lucene 10.2.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
@@ -185,11 +185,16 @@ public final class Version {
185185
@Deprecated public static final Version LUCENE_10_1_0 = new Version(10, 1, 0);
186186

187187
/**
188-
* Match settings and bugs in Lucene's 10.2.0 release.
188+
* @deprecated (10.2.1) Use latest
189+
*/
190+
@Deprecated public static final Version LUCENE_10_2_0 = new Version(10, 2, 0);
191+
192+
/**
193+
* Match settings and bugs in Lucene's 10.2.1 release.
189194
*
190195
* <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.
191196
*/
192-
public static final Version LUCENE_10_2_0 = new Version(10, 2, 0);
197+
public static final Version LUCENE_10_2_1 = new Version(10, 2, 1);
193198

194199
// To add a new version:
195200
// * Only add above this comment
@@ -205,7 +210,7 @@ public final class Version {
205210
* <b>re-test your entire application</b> to ensure it behaves as expected, as some defaults may
206211
* have changed and may break functionality in your application.
207212
*/
208-
public static final Version LATEST = LUCENE_10_2_0;
213+
public static final Version LATEST = LUCENE_10_2_1;
209214

210215
/**
211216
* Constant for backwards compatibility.

0 commit comments

Comments
 (0)