You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2021/11/02 10:47:28 UTC

[lucene] branch main updated: Add next major version 10.0.0

This is an automated email from the ASF dual-hosted git repository.

jpountz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/main by this push:
     new 2a7dd4d  Add next major version 10.0.0
2a7dd4d is described below

commit 2a7dd4d7dc9a097881509e37de503d08c62f495f
Author: Adrien Grand <jp...@gmail.com>
AuthorDate: Tue Nov 2 11:47:19 2021 +0100

    Add next major version 10.0.0
---
 build.gradle                                       |  2 +-
 lucene/CHANGES.txt                                 | 26 ++++++++++++++++++++++
 .../src/java/org/apache/lucene/util/Version.java   | 15 +++++++++----
 3 files changed, 38 insertions(+), 5 deletions(-)

diff --git a/build.gradle b/build.gradle
index c2f6351..4d2fbda 100644
--- a/build.gradle
+++ b/build.gradle
@@ -35,7 +35,7 @@ apply from: file('gradle/globals.gradle')
 // Calculate project version:
 version = {
   // Release manager: update base version here after release:
-  String baseVersion = '9.0.0'
+  String baseVersion = '10.0.0'
 
   // On a release explicitly set release version in one go:
   //  -Dversion.release=x.y.z
diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index 4bbc354..db2a0a2 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -3,6 +3,32 @@ Lucene Change Log
 For more information on past and future Lucene versions, please see:
 http://s.apache.org/luceneversions
 
+======================= Lucene 10.0.0 =======================
+
+API Changes
+---------------------
+(No changes)
+
+New Features
+---------------------
+(No changes)
+
+Improvements
+---------------------
+(No changes)
+
+Optimizations
+---------------------
+(No changes)
+
+Bug Fixes
+---------------------
+(No changes)
+
+Other
+---------------------
+(No changes)
+
 ======================= Lucene 9.0.0 =======================
 
 New Features
diff --git a/lucene/core/src/java/org/apache/lucene/util/Version.java b/lucene/core/src/java/org/apache/lucene/util/Version.java
index f5e1bad..a2d60ab 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -190,12 +190,19 @@ public final class Version {
   @Deprecated public static final Version LUCENE_8_11_0 = new Version(8, 11, 0);
 
   /**
-   * Match settings and bugs in Lucene's 9.0.0 release.
-   *
-   * <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.
+   * @deprecated (10.0.0) Use latest
    */
+  @Deprecated
   public static final Version LUCENE_9_0_0 = new Version(9, 0, 0);
 
+  /**
+   * Match settings and bugs in Lucene's 10.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);
+
   // To add a new version:
   //  * Only add above this comment
   //  * If the new version is the newest, change LATEST below and deprecate the previous LATEST
@@ -210,7 +217,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_9_0_0;
+  public static final Version LATEST = LUCENE_10_0_0;
 
   /**
    * Constant for backwards compatibility.