move to [1.0.0.Beta2] SNAP
This commit is contained in:
parent
77bc5d5ecf
commit
e1b6988886
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.Beta1</version>
|
||||
<version>1.0.0.Beta2-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<description>ElasticSearch - Open Source, Distributed, RESTful Search Engine</description>
|
||||
<inceptionYear>2009</inceptionYear>
|
||||
|
|
|
@ -137,8 +137,10 @@ public class Version implements Serializable {
|
|||
|
||||
public static final int V_1_0_0_Beta1_ID = /*00*/1000001;
|
||||
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, true, org.apache.lucene.util.Version.LUCENE_45);
|
||||
|
||||
public static final Version CURRENT = V_1_0_0_Beta1;
|
||||
public static final Version CURRENT = V_1_0_0_Beta2;
|
||||
|
||||
static {
|
||||
assert CURRENT.luceneVersion == Lucene.VERSION : "Version must be upgraded to [" + Lucene.VERSION + "] is still set to [" + CURRENT.luceneVersion + "]";
|
||||
|
@ -150,6 +152,8 @@ public class Version implements Serializable {
|
|||
|
||||
public static Version fromId(int id) {
|
||||
switch (id) {
|
||||
case V_1_0_0_Beta2_ID:
|
||||
return V_1_0_0_Beta2;
|
||||
case V_1_0_0_Beta1_ID:
|
||||
return V_1_0_0_Beta1;
|
||||
case V_0_90_6_ID:
|
||||
|
|
Loading…
Reference in New Issue