Skip to content

Commit 7361644

Browse files
author
Christoph Büscher
authored
Bump to unreleased version 6.2.4 (#29171)
1 parent 74b4656 commit 7361644

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

buildSrc/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
elasticsearch = 6.2.3
1+
elasticsearch = 6.2.4
22
lucene = 7.2.1
33

44
# optional dependencies

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,9 @@ public class Version implements Comparable<Version> {
158158
public static final Version V_6_2_2 = new Version(V_6_2_2_ID, org.apache.lucene.util.Version.LUCENE_7_2_1);
159159
public static final int V_6_2_3_ID = 6020399;
160160
public static final Version V_6_2_3 = new Version(V_6_2_3_ID, org.apache.lucene.util.Version.LUCENE_7_2_1);
161-
public static final Version CURRENT = V_6_2_3;
161+
public static final int V_6_2_4_ID = 6020499;
162+
public static final Version V_6_2_4 = new Version(V_6_2_4_ID, org.apache.lucene.util.Version.LUCENE_7_2_1);
163+
public static final Version CURRENT = V_6_2_4;
162164

163165
static {
164166
assert CURRENT.luceneVersion.equals(org.apache.lucene.util.Version.LATEST) : "Version must be upgraded to ["
@@ -171,6 +173,8 @@ public static Version readVersion(StreamInput in) throws IOException {
171173

172174
public static Version fromId(int id) {
173175
switch (id) {
176+
case V_6_2_4_ID:
177+
return V_6_2_4;
174178
case V_6_2_3_ID:
175179
return V_6_2_3;
176180
case V_6_2_2_ID:

0 commit comments

Comments
 (0)