mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-18 19:05:06 +00:00
release 0.20.0.RC1
This commit is contained in:
parent
c0e2eb5f5f
commit
fe980343be
2
pom.xml
2
pom.xml
@ -6,7 +6,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.elasticsearch</groupId>
|
<groupId>org.elasticsearch</groupId>
|
||||||
<artifactId>elasticsearch</artifactId>
|
<artifactId>elasticsearch</artifactId>
|
||||||
<version>0.20.0.Beta1-SNAPSHOT</version>
|
<version>0.20.0.RC1</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<description>ElasticSearch - Open Source, Distributed, RESTful Search Engine</description>
|
<description>ElasticSearch - Open Source, Distributed, RESTful Search Engine</description>
|
||||||
<inceptionYear>2009</inceptionYear>
|
<inceptionYear>2009</inceptionYear>
|
||||||
|
@ -86,10 +86,10 @@ public class Version implements Serializable {
|
|||||||
public static final int V_0_19_10_ID = /*00*/191099;
|
public static final int V_0_19_10_ID = /*00*/191099;
|
||||||
public static final Version V_0_19_10 = new Version(V_0_19_10_ID, false);
|
public static final Version V_0_19_10 = new Version(V_0_19_10_ID, false);
|
||||||
|
|
||||||
public static final int V_0_20_0_Beta1_ID = /*00*/200001;
|
public static final int V_0_20_0_RC1_ID = /*00*/200051;
|
||||||
public static final Version V_0_20_0_Beta1 = new Version(V_0_20_0_Beta1_ID, true);
|
public static final Version V_0_20_0_RC1 = new Version(V_0_20_0_RC1_ID, false);
|
||||||
|
|
||||||
public static final Version CURRENT = V_0_20_0_Beta1;
|
public static final Version CURRENT = V_0_20_0_RC1;
|
||||||
|
|
||||||
public static Version readVersion(StreamInput in) throws IOException {
|
public static Version readVersion(StreamInput in) throws IOException {
|
||||||
return fromId(in.readVInt());
|
return fromId(in.readVInt());
|
||||||
@ -97,8 +97,8 @@ public class Version implements Serializable {
|
|||||||
|
|
||||||
public static Version fromId(int id) {
|
public static Version fromId(int id) {
|
||||||
switch (id) {
|
switch (id) {
|
||||||
case V_0_20_0_Beta1_ID:
|
case V_0_20_0_RC1_ID:
|
||||||
return V_0_20_0_Beta1;
|
return V_0_20_0_RC1;
|
||||||
|
|
||||||
case V_0_19_0_RC1_ID:
|
case V_0_19_0_RC1_ID:
|
||||||
return V_0_19_0_RC1;
|
return V_0_19_0_RC1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user