Skip to content

Commit

Permalink
move to 0.18.8 snap
Browse files Browse the repository at this point in the history
  • Loading branch information
kimchy committed Jan 10, 2012
1 parent 552cbf5 commit f3759e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
buildTimeStr = sdf.format(buildTime)

versionNumber = '0.18.7'
versionNumber = '0.18.8-SNAPSHOT'

explodedDistDir = new File(distsDir, 'exploded')
explodedDistLibDir = new File(explodedDistDir, 'lib')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,10 @@ public class Version {
public static final Version V_0_18_6 = new Version(V_0_18_6_ID, false);
public static final int V_0_18_7_ID = /*00*/180799;
public static final Version V_0_18_7 = new Version(V_0_18_7_ID, false);
public static final int V_0_18_8_ID = /*00*/180899;
public static final Version V_0_18_8 = new Version(V_0_18_8_ID, true);

public static final Version CURRENT = V_0_18_7;
public static final Version CURRENT = V_0_18_8;

public static Version readVersion(StreamInput in) throws IOException {
return fromId(in.readVInt());
Expand All @@ -75,6 +77,8 @@ private static Version fromId(int id) {
return V_0_18_6;
case V_0_18_7_ID:
return V_0_18_7;
case V_0_18_8_ID:
return V_0_18_8;
default:
return new Version(id, null);
}
Expand Down

0 comments on commit f3759e9

Please sign in to comment.