Skip to content

Commit

Permalink
Bump 6.5 branch version to 6.5.3 (#36266)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymode authored Dec 5, 2018
1 parent 1c54129 commit 9c761a8
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.5.2
elasticsearch = 6.5.3
lucene = 7.5.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 @@ -192,8 +192,10 @@ 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 Version CURRENT = V_6_5_2;
public static final Version CURRENT = V_6_5_3;

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

public static Version fromId(int id) {
switch (id) {
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 9c761a8

Please sign in to comment.