Skip to content

Commit b8f26eb

Browse files
author
Christoph Büscher
authored
Bump to unreleased version 6.1.5 (#29168)
1 parent 3c826e1 commit b8f26eb

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

buildSrc/version.properties

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# When updating elasticsearch, please update 'rest' version in core/src/main/resources/org/elasticsearch/bootstrap/test-framework.policy
2-
elasticsearch = 6.1.4
1+
elasticsearch = 6.1.5
32
lucene = 7.1.0
43

54
# optional dependencies

core/src/main/java/org/elasticsearch/Version.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,9 @@ public class Version implements Comparable<Version> {
148148
public static final Version V_6_1_3 = new Version(V_6_1_3_ID, org.apache.lucene.util.Version.LUCENE_7_1_0);
149149
public static final int V_6_1_4_ID = 6010499;
150150
public static final Version V_6_1_4 = new Version(V_6_1_4_ID, org.apache.lucene.util.Version.LUCENE_7_1_0);
151-
public static final Version CURRENT = V_6_1_4;
151+
public static final int V_6_1_5_ID = 6010599;
152+
public static final Version V_6_1_5 = new Version(V_6_1_5_ID, org.apache.lucene.util.Version.LUCENE_7_1_0);
153+
public static final Version CURRENT = V_6_1_5;
152154

153155
static {
154156
assert CURRENT.luceneVersion.equals(org.apache.lucene.util.Version.LATEST) : "Version must be upgraded to ["
@@ -161,6 +163,8 @@ public static Version readVersion(StreamInput in) throws IOException {
161163

162164
public static Version fromId(int id) {
163165
switch (id) {
166+
case V_6_1_5_ID:
167+
return V_6_1_5;
164168
case V_6_1_4_ID:
165169
return V_6_1_4;
166170
case V_6_1_3_ID:

0 commit comments

Comments
 (0)