Bump version from 7.4 to 7.5 (#46142)

This commit is contained in:
Paul Sanwald 2019-08-29 15:03:26 -04:00 committed by GitHub
parent e7d33cc1c6
commit 8bdbc7d9bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 4 deletions

View File

@ -42,3 +42,4 @@ BWC_VERSION:
- "7.3.0"
- "7.3.1"
- "7.3.2"
- "7.4.0"

View File

@ -1,4 +1,4 @@
elasticsearch = 7.4.0
elasticsearch = 7.5.0
lucene = 8.2.0
bundled_jdk = 12.0.2+10@e482c34c86bd4bf8b56c0b35558996b9

View File

@ -1,8 +1,8 @@
:version: 7.4.0
:version: 7.5.0
////
bare_version never includes -alpha or -beta
////
:bare_version: 7.4.0
:bare_version: 7.5.0
:major-version: 7.x
:prev-major-version: 6.x
:lucene_version: 8.2.0

View File

@ -118,7 +118,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_3_1 = new Version(7030199, org.apache.lucene.util.Version.LUCENE_8_1_0);
public static final Version V_7_3_2 = new Version(7030299, org.apache.lucene.util.Version.LUCENE_8_1_0);
public static final Version V_7_4_0 = new Version(7040099, org.apache.lucene.util.Version.LUCENE_8_2_0);
public static final Version CURRENT = V_7_4_0;
public static final Version V_7_5_0 = new Version(7050099, org.apache.lucene.util.Version.LUCENE_8_2_0);
public static final Version CURRENT = V_7_5_0;
private static final ImmutableOpenIntMap<Version> idToVersion;