move to 0.19.0.RC4 snap
This commit is contained in:
parent
aeaed0a1b0
commit
ca5f6ec0f6
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.elasticsearch</groupId>
|
||||
<artifactId>elasticsearch</artifactId>
|
||||
<version>0.19.0.RC3</version>
|
||||
<version>0.19.0.RC4-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<description>ElasticSearch - Open Source, Distributed, RESTful Search Engine</description>
|
||||
<inceptionYear>2009</inceptionYear>
|
||||
|
|
|
@ -63,7 +63,10 @@ public class Version implements Serializable {
|
|||
public static final int V_0_19_0_RC3_ID = /*00*/190053;
|
||||
public static final Version V_0_19_0_RC3 = new Version(V_0_19_0_RC3_ID, false);
|
||||
|
||||
public static final Version CURRENT = V_0_19_0_RC3;
|
||||
public static final int V_0_19_0_RC4_ID = /*00*/190054;
|
||||
public static final Version V_0_19_0_RC4 = new Version(V_0_19_0_RC4_ID, true);
|
||||
|
||||
public static final Version CURRENT = V_0_19_0_RC4;
|
||||
|
||||
public static Version readVersion(StreamInput in) throws IOException {
|
||||
return fromId(in.readVInt());
|
||||
|
@ -96,6 +99,8 @@ public class Version implements Serializable {
|
|||
return V_0_19_0_RC2;
|
||||
case V_0_19_0_RC3_ID:
|
||||
return V_0_19_0_RC3;
|
||||
case V_0_19_0_RC4_ID:
|
||||
return V_0_19_0_RC4;
|
||||
default:
|
||||
return new Version(id, null);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue