Skip to content

Commit 2535a40

Browse files
committed
Move to [0.90.11] snap
1 parent 0a5781f commit 2535a40

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-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>0.90.10</version>
9+
<version>0.90.11-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: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,10 @@ public class Version implements Serializable {
142142
public static final Version V_0_90_9 = new Version(V_0_90_9_ID, false, org.apache.lucene.util.Version.LUCENE_46);
143143
public static final int V_0_90_10_ID = /*00*/901099;
144144
public static final Version V_0_90_10 = new Version(V_0_90_10_ID, false, org.apache.lucene.util.Version.LUCENE_46);
145-
public static final Version CURRENT = V_0_90_10;
145+
public static final int V_0_90_11_ID = /*00*/901199;
146+
public static final Version V_0_90_11 = new Version(V_0_90_11_ID, true, org.apache.lucene.util.Version.LUCENE_46);
147+
148+
public static final Version CURRENT = V_0_90_11;
146149

147150
static {
148151
assert CURRENT.luceneVersion == Lucene.VERSION : "Version must be upgraded to [" + Lucene.VERSION + "] is still set to [" + CURRENT.luceneVersion + "]";
@@ -154,6 +157,8 @@ public static Version readVersion(StreamInput in) throws IOException {
154157

155158
public static Version fromId(int id) {
156159
switch (id) {
160+
case V_0_90_11_ID:
161+
return V_0_90_11;
157162
case V_0_90_10_ID:
158163
return V_0_90_10;
159164
case V_0_90_9_ID:

0 commit comments

Comments
 (0)