Skip to content

Commit 9dc97f3

Browse files
committed
Add next bugfix version 10.1.1
1 parent 52dd378 commit 9dc97f3

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.1.0'
44+
String baseVersion = '10.1.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.1.1 =======================
7+
8+
Bug Fixes
9+
---------------------
10+
(No changes)
11+
612
======================= Lucene 10.1.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
@@ -180,11 +180,16 @@ public final class Version {
180180
@Deprecated public static final Version LUCENE_10_0_0 = new Version(10, 0, 0);
181181

182182
/**
183-
* Match settings and bugs in Lucene's 10.1.0 release.
183+
* @deprecated (10.1.1) Use latest
184+
*/
185+
@Deprecated public static final Version LUCENE_10_1_0 = new Version(10, 1, 0);
186+
187+
/**
188+
* Match settings and bugs in Lucene's 10.1.1 release.
184189
*
185190
* <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.
186191
*/
187-
public static final Version LUCENE_10_1_0 = new Version(10, 1, 0);
192+
public static final Version LUCENE_10_1_1 = new Version(10, 1, 1);
188193

189194
// To add a new version:
190195
// * Only add above this comment
@@ -200,7 +205,7 @@ public final class Version {
200205
* <b>re-test your entire application</b> to ensure it behaves as expected, as some defaults may
201206
* have changed and may break functionality in your application.
202207
*/
203-
public static final Version LATEST = LUCENE_10_1_0;
208+
public static final Version LATEST = LUCENE_10_1_1;
204209

205210
/**
206211
* Constant for backwards compatibility.

0 commit comments

Comments
 (0)