Skip to content

Commit 9c761a8

Browse files
authored
Bump 6.5 branch version to 6.5.3 (#36266)
1 parent 1c54129 commit 9c761a8

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

buildSrc/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
elasticsearch = 6.5.2
1+
elasticsearch = 6.5.3
22
lucene = 7.5.0
33

44
# optional dependencies

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,10 @@ public class Version implements Comparable<Version>, ToXContentFragment {
192192
public static final Version V_6_5_1 = new Version(V_6_5_1_ID, org.apache.lucene.util.Version.LUCENE_7_5_0);
193193
public static final int V_6_5_2_ID = 6050299;
194194
public static final Version V_6_5_2 = new Version(V_6_5_2_ID, org.apache.lucene.util.Version.LUCENE_7_5_0);
195+
public static final int V_6_5_3_ID = 6050399;
196+
public static final Version V_6_5_3 = new Version(V_6_5_3_ID, org.apache.lucene.util.Version.LUCENE_7_5_0);
195197

196-
public static final Version CURRENT = V_6_5_2;
198+
public static final Version CURRENT = V_6_5_3;
197199

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

207209
public static Version fromId(int id) {
208210
switch (id) {
211+
case V_6_5_3_ID:
212+
return V_6_5_3;
209213
case V_6_5_2_ID:
210214
return V_6_5_2;
211215
case V_6_5_1_ID:

0 commit comments

Comments
 (0)