Bump versions after 7.10 release (#64856)

This commit is contained in:
Andrei Dan 2020-11-11 13:08:16 +00:00 committed by GitHub
parent 90af072277
commit cd35122e48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -71,3 +71,4 @@ BWC_VERSION:
- "7.9.2"
- "7.9.3"
- "7.9.4"
- "7.10.0"

View File

@ -1,4 +1,4 @@
elasticsearch = 7.10.0
elasticsearch = 7.10.1
lucene = 8.7.0
bundled_jdk_vendor = adoptopenjdk

View File

@ -150,7 +150,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_9_3 = new Version(7090399, org.apache.lucene.util.Version.LUCENE_8_6_2);
public static final Version V_7_9_4 = new Version(7090499, org.apache.lucene.util.Version.LUCENE_8_6_2);
public static final Version V_7_10_0 = new Version(7100099, org.apache.lucene.util.Version.LUCENE_8_7_0);
public static final Version CURRENT = V_7_10_0;
public static final Version V_7_10_1 = new Version(7100199, org.apache.lucene.util.Version.LUCENE_8_7_0);
public static final Version CURRENT = V_7_10_1;
private static final ImmutableOpenIntMap<Version> idToVersion;
private static final ImmutableOpenMap<String, Version> stringToVersion;