Bump current version to 7.4. (#43927)

This commit is contained in:
Adrien Grand 2019-07-03 20:32:04 +02:00 committed by GitHub
parent 50e96f9f0e
commit 680edbe3f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
elasticsearch = 7.3.0
elasticsearch = 7.4.0
lucene = 8.1.0
bundled_jdk = 12.0.1+12@69cfe15208a647278a19ef0990eea691

View File

@ -104,7 +104,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_2_0 = new Version(7020099, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version V_7_2_1 = new Version(7020199, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version V_7_3_0 = new Version(7030099, org.apache.lucene.util.Version.LUCENE_8_1_0);
public static final Version CURRENT = V_7_3_0;
public static final Version V_7_4_0 = new Version(7040099, org.apache.lucene.util.Version.LUCENE_8_1_0);
public static final Version CURRENT = V_7_4_0;
private static final ImmutableOpenIntMap<Version> idToVersion;