Skip to content

Commit 85ca6c6

Browse files
committed
move to [1.0.0] SNAP
1 parent 6dd5c80 commit 85ca6c6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-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>1.0.0.RC1</version>
9+
<version>1.0.0-SNAPSHOT</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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,10 @@ public class Version implements Serializable {
149149
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);
150150
public static final int V_1_0_0_RC1_ID = /*00*/1000051;
151151
public static final Version V_1_0_0_RC1 = new Version(V_1_0_0_RC1_ID, false, org.apache.lucene.util.Version.LUCENE_46);
152+
public static final int V_1_0_0_ID = /*00*/1000099;
153+
public static final Version V_1_0_0 = new Version(V_1_0_0_ID, true, org.apache.lucene.util.Version.LUCENE_46);
152154

153-
public static final Version CURRENT = V_1_0_0_RC1;
155+
public static final Version CURRENT = V_1_0_0;
154156

155157
static {
156158
assert CURRENT.luceneVersion == Lucene.VERSION : "Version must be upgraded to [" + Lucene.VERSION + "] is still set to [" + CURRENT.luceneVersion + "]";
@@ -162,6 +164,8 @@ public static Version readVersion(StreamInput in) throws IOException {
162164

163165
public static Version fromId(int id) {
164166
switch (id) {
167+
case V_1_0_0_ID:
168+
return V_1_0_0;
165169
case V_1_0_0_RC1_ID:
166170
return V_1_0_0_RC1;
167171
case V_1_0_0_Beta2_ID:

0 commit comments

Comments
 (0)