Skip to content

Commit

Permalink
Bump 5.6 branch to version 5.6.17 (elastic#40210)
Browse files Browse the repository at this point in the history
  • Loading branch information
romseygeek authored Mar 19, 2019
1 parent 5ade381 commit 59bb0dc
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.16
elasticsearch = 5.6.17
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 @@ -172,10 +172,12 @@ public class Version implements Comparable<Version> {
public static final Version V_5_6_14 = new Version(V_5_6_14_ID, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final int V_5_6_15_ID = 5061599;
public static final Version V_5_6_15 = new Version(V_5_6_15_ID, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final int V_5_6_16_ID_UNRELEASED = 5061699;
public static final Version V_5_6_16_UNRELEASED = new Version(V_5_6_16_ID_UNRELEASED, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final int V_5_6_16_ID = 5061699;
public static final Version V_5_6_16 = new Version(V_5_6_16_ID, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final int V_5_6_17_ID_UNRELEASED = 5061799;
public static final Version V_5_6_17_UNRELEASED = new Version(V_5_6_17_ID_UNRELEASED, org.apache.lucene.util.Version.LUCENE_6_6_1);

public static final Version CURRENT = V_5_6_16_UNRELEASED;
public static final Version CURRENT = V_5_6_17_UNRELEASED;

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

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

public static Version fromId(int id) {
switch (id) {
case V_5_6_16_ID_UNRELEASED:
return V_5_6_16_UNRELEASED;
case V_5_6_17_ID_UNRELEASED:
return V_5_6_17_UNRELEASED;
case V_5_6_16_ID:
return V_5_6_16;
case V_5_6_15_ID:
return V_5_6_15;
case V_5_6_14_ID:
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 59bb0dc

Please sign in to comment.