Skip to content

Commit

Permalink
add 7_3 as version (#42368)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakelandis authored May 22, 2019
1 parent 943344f commit 458aa64
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_1_1 = new Version(V_7_1_1_ID, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final int V_7_2_0_ID = 7020099;
public static final Version V_7_2_0 = new Version(V_7_2_0_ID, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final int V_7_3_0_ID = 7030099;
public static final Version V_7_3_0 = new Version(V_7_3_0_ID, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final int V_8_0_0_ID = 8000099;
public static final Version V_8_0_0 = new Version(V_8_0_0_ID, org.apache.lucene.util.Version.LUCENE_8_1_0);
public static final Version CURRENT = V_8_0_0;
Expand All @@ -110,6 +112,8 @@ public static Version fromId(int id) {
switch (id) {
case V_8_0_0_ID:
return V_8_0_0;
case V_7_3_0_ID:
return V_7_3_0;
case V_7_2_0_ID:
return V_7_2_0;
case V_7_1_1_ID:
Expand Down

0 comments on commit 458aa64

Please sign in to comment.