Version Bumb to 7.10.3

This commit is contained in:
Rene Groeschke 2021-01-14 14:10:27 +01:00
parent 8769dbdfa4
commit f02bd9942b
No known key found for this signature in database
GPG Key ID: B1782D97CBC64567
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
elasticsearch = 7.10.2
elasticsearch = 7.10.3
lucene = 8.7.0
bundled_jdk_vendor = adoptopenjdk

View File

@ -151,7 +151,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_10_0 = new Version(7100099, org.apache.lucene.util.Version.LUCENE_8_7_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 V_7_10_2 = new Version(7100299, org.apache.lucene.util.Version.LUCENE_8_7_0);
public static final Version CURRENT = V_7_10_2;
public static final Version V_7_10_3 = new Version(7100399, org.apache.lucene.util.Version.LUCENE_8_7_0);
public static final Version CURRENT = V_7_10_3;
private static final ImmutableOpenIntMap<Version> idToVersion;
private static final ImmutableOpenMap<String, Version> stringToVersion;