Browse Source

Add the 7.7.1 Version

Add the newly bumped 7.7 branch version, 7.7.1.
Bogdan Pintea 5 years ago
parent
commit
f929ad1f94
2 changed files with 2 additions and 0 deletions
  1. 1 0
      .ci/bwcVersions
  2. 1 0
      server/src/main/java/org/elasticsearch/Version.java

+ 1 - 0
.ci/bwcVersions

@@ -17,6 +17,7 @@ BWC_VERSION:
   - "7.6.0"
   - "7.6.1"
   - "7.6.2"
+  - "7.7.1"
   - "7.8.0"
   - "7.9.0"
   - "8.0.0"

+ 1 - 0
server/src/main/java/org/elasticsearch/Version.java

@@ -76,6 +76,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
     public static final Version V_7_6_1 = new Version(7060199, org.apache.lucene.util.Version.LUCENE_8_4_0);
     public static final Version V_7_6_2 = new Version(7060299, org.apache.lucene.util.Version.LUCENE_8_4_0);
     public static final Version V_7_7_0 = new Version(7070099, org.apache.lucene.util.Version.LUCENE_8_5_1);
+    public static final Version V_7_7_1 = new Version(7070199, org.apache.lucene.util.Version.LUCENE_8_5_1);
     public static final Version V_7_8_0 = new Version(7080099, org.apache.lucene.util.Version.LUCENE_8_5_1);
     public static final Version V_7_9_0 = new Version(7090099, org.apache.lucene.util.Version.LUCENE_8_6_0);
     public static final Version V_8_0_0 = new Version(8000099, org.apache.lucene.util.Version.LUCENE_8_6_0);