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 2019/03/05 10:52:18 UTC

[lucene-solr] branch branch_8x updated: Add back version constant to make TestBackwardCompatibility happy for now.

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

jpountz pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 8186271  Add back version constant to make TestBackwardCompatibility happy for now.
8186271 is described below

commit 81862719164ea84194312bb4573d463bb8a6d261
Author: Adrien Grand <jp...@gmail.com>
AuthorDate: Tue Mar 5 11:03:28 2019 +0100

    Add back version constant to make TestBackwardCompatibility happy for now.
---
 lucene/core/src/java/org/apache/lucene/util/Version.java | 7 +++++++
 1 file changed, 7 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 3a2c97a..4b7ad3d 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -118,6 +118,13 @@ public final class Version {
   public static final Version LUCENE_7_7_1 = new Version(7, 7, 1);
 
   /**
+   * Match settings and bugs in Lucene's 7.8.0 release.
+   * @deprecated Use latest
+   */
+  @Deprecated
+  public static final Version LUCENE_7_8_0 = new Version(7, 8, 0);
+
+  /**
    * Match settings and bugs in Lucene's 8.0.0 release.
    * @deprecated (8.1.0) Use latest
    */