Skip to content

Commit

Permalink
add 0.90.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kimchy committed Sep 16, 2013
1 parent 5396d8e commit fd4ab5c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ public class Version implements Serializable {
public static final Version V_0_90_3 = new Version(V_0_90_3_ID, false, org.apache.lucene.util.Version.LUCENE_44);
public static final int V_0_90_4_ID = /*00*/900499;
public static final Version V_0_90_4 = new Version(V_0_90_4_ID, false, org.apache.lucene.util.Version.LUCENE_44);
public static final int V_0_90_5_ID = /*00*/900599;
public static final Version V_0_90_5 = new Version(V_0_90_5_ID, false, org.apache.lucene.util.Version.LUCENE_44);

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, true, org.apache.lucene.util.Version.LUCENE_44);
Expand All @@ -149,6 +151,8 @@ public static Version fromId(int id) {
case V_1_0_0_Beta1_ID:
return V_1_0_0_Beta1;

case V_0_90_5_ID:
return V_0_90_5;
case V_0_90_4_ID:
return V_0_90_4;
case V_0_90_3_ID:
Expand Down

0 comments on commit fd4ab5c

Please sign in to comment.