Skip to content

Commit

Permalink
Bumping ES Version to 5.6.11 (#33090)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirdolzhenko authored Aug 23, 2018
1 parent 29fc4a2 commit 4afbc30
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 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.11
elasticsearch = 5.6.12
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 @@ -162,9 +162,11 @@ public class Version implements Comparable<Version> {
public static final Version V_5_6_9 = new Version(V_5_6_9_ID, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final int V_5_6_10_ID = 5061099;
public static final Version V_5_6_10 = new Version(V_5_6_10_ID, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final int V_5_6_11_ID_UNRELEASED = 5061199;
public static final Version V_5_6_11_UNRELEASED = new Version(V_5_6_11_ID_UNRELEASED, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final Version CURRENT = V_5_6_11_UNRELEASED;
public static final int V_5_6_11_ID = 5061199;
public static final Version V_5_6_11 = new Version(V_5_6_11_ID, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final int V_5_6_12_ID_UNRELEASED = 5061299;
public static final Version V_5_6_12_UNRELEASED = new Version(V_5_6_12_ID_UNRELEASED, org.apache.lucene.util.Version.LUCENE_6_6_1);
public static final Version CURRENT = V_5_6_12_UNRELEASED;

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

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

public static Version fromId(int id) {
switch (id) {
case V_5_6_11_ID_UNRELEASED:
return V_5_6_11_UNRELEASED;
case V_5_6_12_ID_UNRELEASED:
return V_5_6_12_UNRELEASED;
case V_5_6_11_ID:
return V_5_6_11;
case V_5_6_10_ID:
return V_5_6_10;
case V_5_6_9_ID:
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/Versions.asciidoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:version: 5.6.10
:version: 5.6.11
:major-version: 5.x
:lucene_version: 6.6.1
:lucene_version_path: 6_6_1
Expand Down

0 comments on commit 4afbc30

Please sign in to comment.