Skip to content

Commit

Permalink
Add version 6.5.3 to 6.x branch (#36267)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymode authored Dec 5, 2018
1 parent fa16347 commit a52abd8
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 @@ -192,6 +192,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_6_5_1 = new Version(V_6_5_1_ID, org.apache.lucene.util.Version.LUCENE_7_5_0);
public static final int V_6_5_2_ID = 6050299;
public static final Version V_6_5_2 = new Version(V_6_5_2_ID, org.apache.lucene.util.Version.LUCENE_7_5_0);
public static final int V_6_5_3_ID = 6050399;
public static final Version V_6_5_3 = new Version(V_6_5_3_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);

Expand All @@ -210,6 +212,8 @@ public static Version fromId(int id) {
switch (id) {
case V_6_6_0_ID:
return V_6_6_0;
case V_6_5_3_ID:
return V_6_5_3;
case V_6_5_2_ID:
return V_6_5_2;
case V_6_5_1_ID:
Expand Down

0 comments on commit a52abd8

Please sign in to comment.