Skip to content

Commit 57a333d

Browse files
Bump the 6.x branch to 6.5.0 (#32361)
This commit bumps the 6.x branch of elasticsearch to 6.5.0.
1 parent d4174c5 commit 57a333d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
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.4.0
1+
elasticsearch = 6.5.0
22
lucene = 7.4.0
33

44
# optional dependencies

docs/Versions.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:version: 6.4.0
1+
:version: 6.5.0
22
:major-version: 6.x
33
:lucene_version: 7.4.0
44
:lucene_version_path: 7_4_0

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,10 @@ public class Version implements Comparable<Version>, ToXContentFragment {
174174
public static final Version V_6_3_3 = new Version(V_6_3_3_ID, org.apache.lucene.util.Version.LUCENE_7_3_1);
175175
public static final int V_6_4_0_ID = 6040099;
176176
public static final Version V_6_4_0 = new Version(V_6_4_0_ID, org.apache.lucene.util.Version.LUCENE_7_4_0);
177+
public static final int V_6_5_0_ID = 6050099;
178+
public static final Version V_6_5_0 = new Version(V_6_5_0_ID, org.apache.lucene.util.Version.LUCENE_7_4_0);
177179

178-
public static final Version CURRENT = V_6_4_0;
180+
public static final Version CURRENT = V_6_5_0;
179181

180182
static {
181183
assert CURRENT.luceneVersion.equals(org.apache.lucene.util.Version.LATEST) : "Version must be upgraded to ["
@@ -188,6 +190,8 @@ public static Version readVersion(StreamInput in) throws IOException {
188190

189191
public static Version fromId(int id) {
190192
switch (id) {
193+
case V_6_5_0_ID:
194+
return V_6_5_0;
191195
case V_6_4_0_ID:
192196
return V_6_4_0;
193197
case V_6_3_3_ID:

0 commit comments

Comments
 (0)