Skip to content

Commit

Permalink
Add the 6.7.0 constant to the master branch
Browse files Browse the repository at this point in the history
Now that the 6.x branch has been bumped to the 6.7.0 version, this
commit adds knowledge of the 6.7.0 version to the master branch.
  • Loading branch information
jasontedor committed Dec 19, 2018
1 parent ad20d6b commit f2a5373
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 @@ -118,6 +118,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_6_5_4 = new Version(V_6_5_4_ID, org.apache.lucene.util.Version.LUCENE_7_5_0);
public static final int V_6_6_0_ID = 6060099;
public static final Version V_6_6_0 = new Version(V_6_6_0_ID, org.apache.lucene.util.Version.LUCENE_7_6_0);
public static final int V_6_7_0_ID = 6070099;
public static final Version V_6_7_0 = new Version(V_6_7_0_ID, org.apache.lucene.util.Version.LUCENE_7_6_0);
public static final int V_7_0_0_ID = 7000099;
public static final Version V_7_0_0 = new Version(V_7_0_0_ID, org.apache.lucene.util.Version.LUCENE_8_0_0);
public static final Version CURRENT = V_7_0_0;
Expand All @@ -136,6 +138,8 @@ public static Version fromId(int id) {
switch (id) {
case V_7_0_0_ID:
return V_7_0_0;
case V_6_7_0_ID:
return V_6_7_0;
case V_6_6_0_ID:
return V_6_6_0;
case V_6_5_4_ID:
Expand Down

0 comments on commit f2a5373

Please sign in to comment.