Add next bugfix version 10.0.1

This commit is contained in:
Luca Cavanna 2024-10-14 22:14:28 +02:00
parent df581bd828
commit d8e76916d6
3 changed files with 11 additions and 5 deletions

View File

@ -41,7 +41,7 @@ apply from: file('gradle/globals.gradle')
// Calculate project version:
version = {
// Release manager: update base version here after release:
String baseVersion = '10.0.0'
String baseVersion = '10.0.1'
// On a release explicitly set release version in one go:
// -Dversion.release=x.y.z

View File

@ -3,10 +3,11 @@ Lucene Change Log
For more information on past and future Lucene versions, please see:
http://s.apache.org/luceneversions
======================== Lucene 10.0.1 =======================
======================= Lucene 10.0.1 =======================
Bug Fixes
---------------------
(No changes)
======================= Lucene 10.0.0 =======================

View File

@ -168,11 +168,16 @@ public final class Version {
@Deprecated public static final Version LUCENE_9_13_0 = new Version(9, 13, 0);
/**
* Match settings and bugs in Lucene's 10.0.0 release.
* @deprecated (10.0.1) Use latest
*/
@Deprecated public static final Version LUCENE_10_0_0 = new Version(10, 0, 0);
/**
* Match settings and bugs in Lucene's 10.0.1 release.
*
* <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.
*/
public static final Version LUCENE_10_0_0 = new Version(10, 0, 0);
public static final Version LUCENE_10_0_1 = new Version(10, 0, 1);
// To add a new version:
// * Only add above this comment
@ -188,7 +193,7 @@ public final class Version {
* <b>re-test your entire application</b> to ensure it behaves as expected, as some defaults may
* have changed and may break functionality in your application.
*/
public static final Version LATEST = LUCENE_10_0_0;
public static final Version LATEST = LUCENE_10_0_1;
/**
* Constant for backwards compatibility.