Skip to content

Commit

Permalink
add 0.18.4 version
Browse files Browse the repository at this point in the history
  • Loading branch information
kimchy committed Nov 16, 2011
1 parent 72d2fd0 commit b0fc243
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ public class Version {
public static final Version V_0_18_2 = new Version(V_0_18_2_ID, false);
public static final int V_0_18_3_ID = /*00*/180399;
public static final Version V_0_18_3 = new Version(V_0_18_3_ID, false);
public static final int V_0_18_4_ID = /*00*/180499;
public static final Version V_0_18_4 = new Version(V_0_18_4_ID, false);

public static final int V_0_19_0_ID = /*00*/190099;
public static final Version V_0_19_0 = new Version(V_0_19_0_ID, true);
Expand All @@ -62,6 +64,8 @@ private static Version fromId(int id) {
return V_0_18_2;
case V_0_18_3_ID:
return V_0_18_3;
case V_0_18_4_ID:
return V_0_18_4;
case V_0_19_0_ID:
return V_0_19_0;
default:
Expand Down

0 comments on commit b0fc243

Please sign in to comment.