Skip to content

Commit

Permalink
Bumps version to 6.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
colings86 committed Apr 4, 2019
1 parent 8e92f61 commit 167d697
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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 = 6.7.1
elasticsearch = 6.7.2
lucene = 7.7.0

# optional dependencies
Expand Down
6 changes: 5 additions & 1 deletion server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,10 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_6_7_0 = new Version(V_6_7_0_ID, org.apache.lucene.util.Version.LUCENE_7_7_0);
public static final int V_6_7_1_ID = 6070199;
public static final Version V_6_7_1 = new Version(V_6_7_1_ID, org.apache.lucene.util.Version.LUCENE_7_7_0);
public static final int V_6_7_2_ID = 6070299;
public static final Version V_6_7_2 = new Version(V_6_7_2_ID, org.apache.lucene.util.Version.LUCENE_7_7_0);

public static final Version CURRENT = V_6_7_1;
public static final Version CURRENT = V_6_7_2;

static {
assert CURRENT.luceneVersion.equals(org.apache.lucene.util.Version.LATEST) : "Version must be upgraded to ["
Expand All @@ -226,6 +228,8 @@ public static Version readVersion(StreamInput in) throws IOException {

public static Version fromId(int id) {
switch (id) {
case V_6_7_2_ID:
return V_6_7_2;
case V_6_7_1_ID:
return V_6_7_1;
case V_6_7_0_ID:
Expand Down

0 comments on commit 167d697

Please sign in to comment.