Skip to content

Commit c6d6280

Browse files
authored
Bump the 6.x branch to 6.4.0 (#29683)
This commit bumps the 6.x branch of elasticsearch to 6.4.0.
1 parent edf37ec commit c6d6280

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.3.0
1+
elasticsearch = 6.4.0
22
lucene = 7.3.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.3.0
1+
:version: 6.4.0
22
:major-version: 6.x
33
:lucene_version: 7.3.0
44
:lucene_version_path: 7_3_0

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,9 @@ public class Version implements Comparable<Version>, ToXContentFragment {
166166
public static final Version V_6_2_5 = new Version(V_6_2_5_ID, LUCENE_7_2_1);
167167
public static final int V_6_3_0_ID = 6030099;
168168
public static final Version V_6_3_0 = new Version(V_6_3_0_ID, org.apache.lucene.util.Version.LUCENE_7_3_0);
169-
public static final Version CURRENT = V_6_3_0;
169+
public static final int V_6_4_0_ID = 6040099;
170+
public static final Version V_6_4_0 = new Version(V_6_4_0_ID, org.apache.lucene.util.Version.LUCENE_7_3_0);
171+
public static final Version CURRENT = V_6_4_0;
170172

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

180182
public static Version fromId(int id) {
181183
switch (id) {
184+
case V_6_4_0_ID:
185+
return V_6_4_0;
182186
case V_6_3_0_ID:
183187
return V_6_3_0;
184188
case V_6_2_5_ID:

0 commit comments

Comments
 (0)