Bump version to 7.10.0

This commit is contained in:
Rory Hunter 2020-07-15 11:44:40 +01:00
parent f8037abf47
commit 2e05ce5f88
3 changed files with 4 additions and 2 deletions

View File

@ -63,3 +63,4 @@ BWC_VERSION:
- "7.7.1"
- "7.8.0"
- "7.8.1"
- "7.9.0"

View File

@ -1,4 +1,4 @@
elasticsearch = 7.9.0
elasticsearch = 7.10.0
lucene = 8.6.0
bundled_jdk_vendor = adoptopenjdk

View File

@ -141,7 +141,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
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_8_1 = new Version(7080199, 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 CURRENT = V_7_9_0;
public static final Version V_7_10_0 = new Version(7100099, org.apache.lucene.util.Version.LUCENE_8_6_0);
public static final Version CURRENT = V_7_10_0;
private static final ImmutableOpenIntMap<Version> idToVersion;