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 2022/11/22 18:11:30 UTC

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

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

jpountz 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 cce19046345 Add next bugfix version 9.4.3
cce19046345 is described below

commit cce1904634528a6e9c6d8e65ae7e6e64040ec79a
Author: Adrien Grand <jp...@gmail.com>
AuthorDate: Tue Nov 22 19:11:20 2022 +0100

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

diff --git a/build.gradle b/build.gradle
index 42aa29cfc40..30a3ce87438 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.2'
+  String baseVersion = '9.4.3'
 
   // 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 88cf30d5201..69952a68412 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.3 =======================
+
+Bug Fixes
+---------------------
+(No changes)
+
 ======================== Lucene 9.4.2 =======================
 
 Bug Fixes
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 93e0d7ed665..063a482b21e 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -231,12 +231,14 @@ public final class Version {
   /** @deprecated (9.4.2) Use latest */
   @Deprecated public static final Version LUCENE_9_4_1 = new Version(9, 4, 1);
 
+  /** @deprecated (9.4.3) Use latest */
+  @Deprecated public static final Version LUCENE_9_4_2 = new Version(9, 4, 2);
+
   /**
-   * Match settings and bugs in Lucene's 9.4.2 release.
-   *
+   * Match settings and bugs in Lucene's 9.4.3 release.
    * <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.
    */
-  public static final Version LUCENE_9_4_2 = new Version(9, 4, 2);
+  public static final Version LUCENE_9_4_3 = new Version(9, 4, 3);
 
   // To add a new version:
   //  * Only add above this comment
@@ -252,7 +254,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_2;
+  public static final Version LATEST = LUCENE_9_4_3;
 
   /**
    * Constant for backwards compatibility.