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/30 23:23:29 UTC

[lucene] branch branch_9_4 updated: Add next bugfix version 9.4.1

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

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


The following commit(s) were added to refs/heads/branch_9_4 by this push:
     new 4cb1dc8c657 Add next bugfix version 9.4.1
4cb1dc8c657 is described below

commit 4cb1dc8c657a47ca1f2184e31275d13e416366a5
Author: Michael Sokolov <so...@amazon.com>
AuthorDate: Fri Sep 30 19:23:22 2022 -0400

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

diff --git a/build.gradle b/build.gradle
index 42455a6d937..fab36294803 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.4.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 1747b8bb0af..9ad8ba23b04 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.4.1 =======================
+
+Bug Fixes
+---------------------
+(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..4c5416f814b 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -225,12 +225,15 @@ public final class Version {
   /** @deprecated (9.4.0) Use latest */
   @Deprecated public static final Version LUCENE_9_3_0 = new Version(9, 3, 0);
 
+  /** @deprecated (9.4.1) Use latest */
+  @Deprecated public static final Version LUCENE_9_4_0 = new Version(9, 4, 0);
+
   /**
-   * Match settings and bugs in Lucene's 9.4.0 release.
+   * Match settings and bugs in Lucene's 9.4.1 release.
    *
    * <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.
    */
-  public static final Version LUCENE_9_4_0 = new Version(9, 4, 0);
+  public static final Version LUCENE_9_4_1 = new Version(9, 4, 1);
 
   // To add a new version:
   //  * Only add above this comment
@@ -246,7 +249,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_4_1;
 
   /**
    * Constant for backwards compatibility.