Add version 5.3.3 constant
This commit adds the version 5.3.3 constant to the master branch.
This commit is contained in:
parent
8e2ab43009
commit
cb7a8d5876
|
@ -72,6 +72,8 @@ public class Version implements Comparable<Version> {
|
|||
public static final Version V_5_3_1 = new Version(V_5_3_1_ID, org.apache.lucene.util.Version.LUCENE_6_4_2);
|
||||
public static final int V_5_3_2_ID = 5030299;
|
||||
public static final Version V_5_3_2 = new Version(V_5_3_2_ID, org.apache.lucene.util.Version.LUCENE_6_4_2);
|
||||
public static final int V_5_3_3_ID_UNRELEASED = 5030399;
|
||||
public static final Version V_5_3_3_UNRELEASED = new Version(V_5_3_3_ID_UNRELEASED, org.apache.lucene.util.Version.LUCENE_6_4_2);
|
||||
public static final int V_5_4_0_ID = 5040099;
|
||||
public static final Version V_5_4_0 = new Version(V_5_4_0_ID, org.apache.lucene.util.Version.LUCENE_6_5_0);
|
||||
public static final int V_5_5_0_ID_UNRELEASED = 5050099;
|
||||
|
@ -105,6 +107,8 @@ public class Version implements Comparable<Version> {
|
|||
return V_5_5_0_UNRELEASED;
|
||||
case V_5_4_0_ID:
|
||||
return V_5_4_0;
|
||||
case V_5_3_3_ID_UNRELEASED:
|
||||
return V_5_3_3_UNRELEASED;
|
||||
case V_5_3_2_ID:
|
||||
return V_5_3_2;
|
||||
case V_5_3_1_ID:
|
||||
|
|
Loading…
Reference in New Issue