Add version 7.8.0

Add version 7.8.0
This commit is contained in:
Bogdan Pintea 2020-03-25 18:08:39 +01:00
parent 30a32040d3
commit 77da9dd040
3 changed files with 4 additions and 2 deletions

View File

@ -56,3 +56,4 @@ BWC_VERSION:
- "7.6.0"
- "7.6.1"
- "7.6.2"
- "7.7.0"

View File

@ -1,4 +1,4 @@
elasticsearch = 7.7.0
elasticsearch = 7.8.0
lucene = 8.5.0
bundled_jdk_vendor = adoptopenjdk

View File

@ -132,7 +132,8 @@ 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_0);
public static final Version CURRENT = V_7_7_0;
public static final Version V_7_8_0 = new Version(7080099, org.apache.lucene.util.Version.LUCENE_8_5_0);
public static final Version CURRENT = V_7_8_0;
private static final ImmutableOpenIntMap<Version> idToVersion;