Skip to content

Commit

Permalink
Add 6.4.0 version to master (#29684)
Browse files Browse the repository at this point in the history
This commit adds the 6.4.0 version constant to the master branch.
  • Loading branch information
jasontedor authored Apr 24, 2018
1 parent 72f57c8 commit bdf2413
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 @@ -170,6 +170,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_6_2_5 = new Version(V_6_2_5_ID, LUCENE_7_2_1);
public static final int V_6_3_0_ID = 6030099;
public static final Version V_6_3_0 = new Version(V_6_3_0_ID, org.apache.lucene.util.Version.LUCENE_7_3_0);
public static final int V_6_4_0_ID = 6040099;
public static final Version V_6_4_0 = new Version(V_6_4_0_ID, org.apache.lucene.util.Version.LUCENE_7_3_0);
public static final int V_7_0_0_alpha1_ID = 7000001;
public static final Version V_7_0_0_alpha1 =
new Version(V_7_0_0_alpha1_ID, org.apache.lucene.util.Version.LUCENE_7_3_0);
Expand All @@ -188,6 +190,8 @@ public static Version fromId(int id) {
switch (id) {
case V_7_0_0_alpha1_ID:
return V_7_0_0_alpha1;
case V_6_4_0_ID:
return V_6_4_0;
case V_6_3_0_ID:
return V_6_3_0;
case V_6_2_5_ID:
Expand Down

0 comments on commit bdf2413

Please sign in to comment.