Skip to content

Commit

Permalink
Add next major version 11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHegarty committed Sep 30, 2024
1 parent 8433352 commit 5ad0451
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '11.0.0'

// On a release explicitly set release version in one go:
// -Dversion.release=x.y.z
Expand Down
26 changes: 26 additions & 0 deletions lucene/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@ Lucene Change Log
For more information on past and future Lucene versions, please see:
http://s.apache.org/luceneversions

======================= Lucene 11.0.0 =======================

API Changes
---------------------
(No changes)

New Features
---------------------
(No changes)

Improvements
---------------------
(No changes)

Optimizations
---------------------
(No changes)

Bug Fixes
---------------------
(No changes)

Other
---------------------
(No changes)

======================= Lucene 10.0.0 =======================

API Changes
Expand Down
11 changes: 8 additions & 3 deletions lucene/core/src/java/org/apache/lucene/util/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 (11.0.0) Use latest
*/
@Deprecated public static final Version LUCENE_10_0_0 = new Version(10, 0, 0);

/**
* Match settings and bugs in Lucene's 11.0.0 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_11_0_0 = new Version(11, 0, 0);

// To add a new version:
// * Only add above this comment
Expand All @@ -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_11_0_0;

/**
* Constant for backwards compatibility.
Expand Down

0 comments on commit 5ad0451

Please sign in to comment.