Skip to content

Commit 6ec0071

Browse files
committed
move master to be 0.21.0 Beta1 snap
1 parent fe98034 commit 6ec0071

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>org.elasticsearch</groupId>
88
<artifactId>elasticsearch</artifactId>
9-
<version>0.20.0.RC1</version>
9+
<version>0.21.0.Beta1</version>
1010
<packaging>jar</packaging>
1111
<description>ElasticSearch - Open Source, Distributed, RESTful Search Engine</description>
1212
<inceptionYear>2009</inceptionYear>

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,20 @@ public class Version implements Serializable {
8989
public static final int V_0_20_0_RC1_ID = /*00*/200051;
9090
public static final Version V_0_20_0_RC1 = new Version(V_0_20_0_RC1_ID, false);
9191

92-
public static final Version CURRENT = V_0_20_0_RC1;
92+
public static final int V_0_21_0_Beta1_ID = /*00*/210001;
93+
public static final Version V_0_21_0_Beta1 = new Version(V_0_21_0_Beta1_ID, false);
94+
95+
public static final Version CURRENT = V_0_21_0_Beta1;
9396

9497
public static Version readVersion(StreamInput in) throws IOException {
9598
return fromId(in.readVInt());
9699
}
97100

98101
public static Version fromId(int id) {
99102
switch (id) {
103+
case V_0_21_0_Beta1_ID:
104+
return V_0_21_0_Beta1;
105+
100106
case V_0_20_0_RC1_ID:
101107
return V_0_20_0_RC1;
102108

0 commit comments

Comments
 (0)