You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by so...@apache.org on 2022/09/02 16:11:23 UTC

[lucene] branch branch_9x updated: Add next minor version 9.5.0

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

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


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 9cc7a2f0c56 Add next minor version 9.5.0
9cc7a2f0c56 is described below

commit 9cc7a2f0c5639a5d35e4cfe38c348aa19b15bbe8
Author: Michael Sokolov <so...@amazon.com>
AuthorDate: Fri Sep 2 12:11:09 2022 -0400

    Add next minor version 9.5.0
---
 build.gradle                                       |  2 +-
 lucene/CHANGES.txt                                 | 26 ++++++++++++++++++++++
 .../src/java/org/apache/lucene/util/Version.java   | 13 +++++++----
 3 files changed, 36 insertions(+), 5 deletions(-)

diff --git a/build.gradle b/build.gradle
index 42455a6d937..7048671c4a7 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.4.0'
+  String baseVersion = '9.5.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 04e46a2ee33..395859e25a2 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 9.5.0 =======================
+
+API Changes
+---------------------
+(No changes)
+
+New Features
+---------------------
+(No changes)
+
+Improvements
+---------------------
+(No changes)
+
+Optimizations
+---------------------
+(No changes)
+
+Bug Fixes
+---------------------
+(No changes)
+
+Other
+---------------------
+(No changes)
+
 ======================== Lucene 9.4.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 7aa08713f7e..0a6ba41c81a 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -226,12 +226,17 @@ public final class Version {
   @Deprecated public static final Version LUCENE_9_3_0 = new Version(9, 3, 0);
 
   /**
-   * Match settings and bugs in Lucene's 9.4.0 release.
-   *
-   * <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.
+   * @deprecated (9.5.0) Use latest
    */
+  @Deprecated
   public static final Version LUCENE_9_4_0 = new Version(9, 4, 0);
 
+  /**
+   * Match settings and bugs in Lucene's 9.5.0 release.
+   * <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.
+   */
+  public static final Version LUCENE_9_5_0 = new Version(9, 5, 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
@@ -246,7 +251,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_4_0;
+  public static final Version LATEST = LUCENE_9_5_0;
 
   /**
    * Constant for backwards compatibility.