You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by iv...@apache.org on 2022/07/29 08:05:02 UTC

[lucene] branch branch_9_3 updated: Add next bugfix version 9.3.1

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

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


The following commit(s) were added to refs/heads/branch_9_3 by this push:
     new df5592f52be Add next bugfix version 9.3.1
df5592f52be is described below

commit df5592f52beec39ce28be2b0ae553a892e25e75e
Author: iverase <iv...@apache.org>
AuthorDate: Fri Jul 29 10:04:56 2022 +0200

    Add next bugfix version 9.3.1
---
 build.gradle                                             |  2 +-
 lucene/CHANGES.txt                                       |  6 ++++++
 lucene/core/src/java/org/apache/lucene/util/Version.java | 13 +++++++++----
 3 files changed, 16 insertions(+), 5 deletions(-)

diff --git a/build.gradle b/build.gradle
index 91164e73333..64d338c4965 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.3.0'
+  String baseVersion = '9.3.1'
 
   // 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 b9e6eb4964b..5bedb3fe497 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -3,6 +3,12 @@ Lucene Change Log
 For more information on past and future Lucene versions, please see:
 http://s.apache.org/luceneversions
 
+======================== Lucene 9.3.1 =======================
+
+Bug Fixes
+---------------------
+(No changes)
+
 ======================== Lucene 9.3.0 =======================
 
 API Changes
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 a3a34ee6de5..4ea3d19a281 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -223,12 +223,17 @@ public final class Version {
   @Deprecated public static final Version LUCENE_9_2_0 = new Version(9, 2, 0);
 
   /**
-   * Match settings and bugs in Lucene's 9.3.0 release.
-   *
-   * <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.
+   * @deprecated (9.3.1) Use latest
    */
+  @Deprecated
   public static final Version LUCENE_9_3_0 = new Version(9, 3, 0);
 
+  /**
+   * Match settings and bugs in Lucene's 9.3.1 release.
+   * <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.
+   */
+  public static final Version LUCENE_9_3_1 = new Version(9, 3, 1);
+
   // 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
@@ -243,7 +248,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_3_0;
+  public static final Version LATEST = LUCENE_9_3_1;
 
   /**
    * Constant for backwards compatibility.