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 17:56:40 UTC

[lucene] branch main updated: Add bugfix version 9.4.2

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

jpountz 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 750e7dba323 Add bugfix version 9.4.2
750e7dba323 is described below

commit 750e7dba3238dece176bd16b3c9d2b17810d7483
Author: Adrien Grand <jp...@gmail.com>
AuthorDate: Tue Nov 22 18:56:30 2022 +0100

    Add bugfix version 9.4.2
---
 lucene/core/src/java/org/apache/lucene/util/Version.java | 8 ++++++++
 1 file changed, 8 insertions(+)

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 38b90c8db5a..6cc7e802cba 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -70,9 +70,17 @@ public final class Version {
    * Match settings and bugs in Lucene's 9.4.1 release.
    *
    * @deprecated Use latest
+   * @deprecated (9.4.2) Use latest
    */
   @Deprecated public static final Version LUCENE_9_4_1 = new Version(9, 4, 1);
 
+  /**
+   * Match settings and bugs in Lucene's 9.4.2 release.
+   * @deprecated Use latest
+   */
+  @Deprecated
+  public static final Version LUCENE_9_4_2 = new Version(9, 4, 2);
+
   /**
    * Match settings and bugs in Lucene's 10.0.0 release.
    *