Skip to content

Commit

Permalink
Bumping ES Version to 5.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ywelsch committed Oct 11, 2017
1 parent 7e2873f commit 10bf1ae
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion buildSrc/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
elasticsearch = 5.6.3
elasticsearch = 5.6.4
lucene = 6.6.1

# optional dependencies
Expand Down
14 changes: 9 additions & 5 deletions core/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,11 @@ public class Version implements Comparable<Version> {
public static final Version V_5_6_1 = new Version(V_5_6_1_ID, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final int V_5_6_2_ID = 5060299;
public static final Version V_5_6_2 = new Version(V_5_6_2_ID, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final int V_5_6_3_ID_UNRELEASED = 5060399;
public static final Version V_5_6_3_UNRELEASED = new Version(V_5_6_3_ID_UNRELEASED, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final Version CURRENT = V_5_6_3_UNRELEASED;
public static final int V_5_6_3_ID = 5060399;
public static final Version V_5_6_3 = new Version(V_5_6_3_ID, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final int V_5_6_4_ID_UNRELEASED = 5060499;
public static final Version V_5_6_4_UNRELEASED = new Version(V_5_6_4_ID_UNRELEASED, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final Version CURRENT = V_5_6_4_UNRELEASED;

// unreleased versions must be added to the above list with the suffix _UNRELEASED (with the exception of CURRENT)

Expand All @@ -163,8 +165,10 @@ public static Version readVersion(StreamInput in) throws IOException {

public static Version fromId(int id) {
switch (id) {
case V_5_6_3_ID_UNRELEASED:
return V_5_6_3_UNRELEASED;
case V_5_6_4_ID_UNRELEASED:
return V_5_6_4_UNRELEASED;
case V_5_6_3_ID:
return V_5_6_3;
case V_5_6_2_ID:
return V_5_6_2;
case V_5_6_1_ID:
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 10bf1ae

Please sign in to comment.