Add version 7.9.0

This commit is contained in:
Rory Hunter 2020-05-06 09:07:05 +01:00
parent 131a3911eb
commit b8b4ebd089
3 changed files with 4 additions and 2 deletions

View File

@ -59,3 +59,4 @@ BWC_VERSION:
- "7.6.2"
- "7.6.3"
- "7.7.0"
- "7.8.0"

View File

@ -1,4 +1,4 @@
elasticsearch = 7.8.0
elasticsearch = 7.9.0
lucene = 8.5.1
bundled_jdk_vendor = adoptopenjdk

View File

@ -137,7 +137,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_6_3 = new Version(7060399, 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_8_0 = new Version(7080099, org.apache.lucene.util.Version.LUCENE_8_5_1);
public static final Version CURRENT = V_7_8_0;
public static final Version V_7_9_0 = new Version(7090099, org.apache.lucene.util.Version.LUCENE_8_5_1);
public static final Version CURRENT = V_7_9_0;
private static final ImmutableOpenIntMap<Version> idToVersion;