Add the 6.7.0 constant to the master branch
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.
This commit is contained in:
parent
ad20d6bb83
commit
f2a5373495
|
@ -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;
|
||||
|
@ -136,6 +138,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
|
|||
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:
|
||||
|
|
Loading…
Reference in New Issue