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

[lucene] branch main updated: Add next minor version 9.2.0

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

romseygeek 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 ac2267035a4 Add next minor version 9.2.0
ac2267035a4 is described below

commit ac2267035a452ec8aeaca7a421bf90f9b3c62c36
Author: Alan Woodward <ro...@apache.org>
AuthorDate: Mon May 16 14:38:20 2022 +0100

    Add next minor version 9.2.0
---
 lucene/CHANGES.txt                                 | 27 +++++++++++++++++++++-
 .../src/java/org/apache/lucene/util/Version.java   |  9 +++++++-
 2 files changed, 34 insertions(+), 2 deletions(-)

diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index 5e3f42ac78f..470a73cef94 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -44,7 +44,6 @@ Optimizations
 
 Bug Fixes
 ---------------------
-
 (No changes)
 
 Other
@@ -64,6 +63,32 @@ Other
 
 * LUCENE-10493: Factor out Viterbi algorithm in Kuromoji and Nori to analysis-common. (Tomoko Uchida)
 
+======================== Lucene 9.3.0 =======================
+
+API Changes
+---------------------
+(No changes)
+
+New Features
+---------------------
+(No changes)
+
+Improvements
+---------------------
+(No changes)
+
+Optimizations
+---------------------
+(No changes)
+
+Bug Fixes
+---------------------
+(No changes)
+
+Other
+---------------------
+(No changes)
+
 ======================= Lucene 9.2.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 46cf4c373be..d939447de9c 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -41,10 +41,17 @@ public final class Version {
   /**
    * Match settings and bugs in Lucene's 9.1.0 release.
    *
-   * @deprecated Use latest
+   * @deprecated (9.2.0) Use latest
    */
   @Deprecated public static final Version LUCENE_9_1_0 = new Version(9, 1, 0);
 
+  /**
+   * Match settings and bugs in Lucene's 9.2.0 release.
+   *
+   * @deprecated (9.3.0) Use latest
+   */
+  @Deprecated public static final Version LUCENE_9_2_0 = new Version(9, 2, 0);
+
   /**
    * Match settings and bugs in Lucene's 10.0.0 release.
    *