Skip to content

Commit f574181

Browse files
committed
Add 6.3.0 version constant
This commit adds the 6.3 version constant to the 6.x branch and bumps the 6.x branch to this version.
1 parent e7be982 commit f574181

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
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.2.0
1+
elasticsearch = 6.3.0
22
lucene = 7.2.1
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.2.0
1+
:version: 6.3.0
22
:major-version: 6.x
33
:lucene_version: 7.2.1
44
:lucene_version_path: 7_2_0

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,9 @@ public class Version implements Comparable<Version> {
144144
public static final Version V_6_1_3 = new Version(V_6_1_3_ID, org.apache.lucene.util.Version.LUCENE_7_1_0);
145145
public static final int V_6_2_0_ID = 6020099;
146146
public static final Version V_6_2_0 = new Version(V_6_2_0_ID, org.apache.lucene.util.Version.LUCENE_7_2_1);
147-
public static final Version CURRENT = V_6_2_0;
147+
public static final int V_6_3_0_ID = 6030099;
148+
public static final Version V_6_3_0 = new Version(V_6_3_0_ID, org.apache.lucene.util.Version.LUCENE_7_2_1);
149+
public static final Version CURRENT = V_6_3_0;
148150

149151
static {
150152
assert CURRENT.luceneVersion.equals(org.apache.lucene.util.Version.LATEST) : "Version must be upgraded to ["
@@ -157,6 +159,8 @@ public static Version readVersion(StreamInput in) throws IOException {
157159

158160
public static Version fromId(int id) {
159161
switch (id) {
162+
case V_6_3_0_ID:
163+
return V_6_3_0;
160164
case V_6_2_0_ID:
161165
return V_6_2_0;
162166
case V_6_1_3_ID:

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ addSubProjects('', new File(rootProject.projectDir, 'plugins'), projects, [])
7878
addSubProjects('', new File(rootProject.projectDir, 'qa'), projects, [])
7979

8080
/* Create projects for building BWC snapshot distributions from the heads of other branches */
81-
final List<String> branches = ['5.6', '6.0', '6.1', '6.x']
81+
final List<String> branches = ['5.6', '6.0', '6.1', '6.2', '6.x']
8282
for (final String branch : branches) {
8383
projects.add("distribution:bwc-snapshot-${branch}".toString())
8484
}

0 commit comments

Comments
 (0)