Moving to 1.0.0RC1 snap
This commit is contained in:
parent
296cfbe390
commit
2c8ee3fbbe
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.elasticsearch</groupId>
|
||||
<artifactId>elasticsearch</artifactId>
|
||||
<version>1.0.0.Beta2</version>
|
||||
<version>1.0.0.RC1-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<description>ElasticSearch - Open Source, Distributed, RESTful Search Engine</description>
|
||||
<inceptionYear>2009</inceptionYear>
|
||||
|
|
|
@ -141,8 +141,10 @@ public class Version implements Serializable {
|
|||
public static final Version V_1_0_0_Beta1 = new Version(V_1_0_0_Beta1_ID, false, org.apache.lucene.util.Version.LUCENE_45);
|
||||
public static final int V_1_0_0_Beta2_ID = /*00*/1000002;
|
||||
public static final Version V_1_0_0_Beta2 = new Version(V_1_0_0_Beta2_ID, false, org.apache.lucene.util.Version.LUCENE_46);
|
||||
public static final int V_1_0_0_RC1_ID = /*00*/1000051;
|
||||
public static final Version V_1_0_0_RC1 = new Version(V_1_0_0_RC1_ID, true, org.apache.lucene.util.Version.LUCENE_46);
|
||||
|
||||
public static final Version CURRENT = V_1_0_0_Beta2;
|
||||
public static final Version CURRENT = V_1_0_0_RC1;
|
||||
|
||||
static {
|
||||
assert CURRENT.luceneVersion == Lucene.VERSION : "Version must be upgraded to [" + Lucene.VERSION + "] is still set to [" + CURRENT.luceneVersion + "]";
|
||||
|
@ -154,6 +156,8 @@ public class Version implements Serializable {
|
|||
|
||||
public static Version fromId(int id) {
|
||||
switch (id) {
|
||||
case V_1_0_0_RC1_ID:
|
||||
return V_1_0_0_RC1;
|
||||
case V_1_0_0_Beta2_ID:
|
||||
return V_1_0_0_Beta2;
|
||||
case V_1_0_0_Beta1_ID:
|
||||
|
|
Loading…
Reference in New Issue