Merge "Add support for Elasticsearch version 7.5.*" into stable-2.16

This commit is contained in:
David Pursehouse
2019-12-03 23:33:37 +00:00
committed by Gerrit Code Review
10 changed files with 20 additions and 11 deletions

View File

@@ -30,7 +30,8 @@ public enum ElasticVersion {
V7_1("7.1.*"),
V7_2("7.2.*"),
V7_3("7.3.*"),
V7_4("7.4.*");
V7_4("7.4.*"),
V7_5("7.5.*");
private final String version;
private final Pattern pattern;