move to 0.19.0 snap

This commit is contained in:
Shay Banon 2011-10-26 21:04:10 +02:00
parent 3544b07330
commit 49a97f6fcf
2 changed files with 11 additions and 2 deletions

View File

@ -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.0'
versionNumber = '0.19.0-SNAPSHOT'
explodedDistDir = new File(distsDir, 'exploded')
explodedDistLibDir = new File(explodedDistDir, 'lib')

View File

@ -36,8 +36,13 @@ public class Version {
public static final int V_0_18_0_ID = /*00*/180099;
public static final Version V_0_18_0 = new Version(V_0_18_0_ID, false);
public static final int V_0_18_1_ID = /*00*/180199;
public static final Version V_0_18_1 = new Version(V_0_18_1_ID, false);
public static final Version CURRENT = V_0_18_0;
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);
public static final Version CURRENT = V_0_19_0;
public static Version readVersion(StreamInput in) throws IOException {
return fromId(in.readVInt());
@ -47,6 +52,10 @@ public class Version {
switch (id) {
case V_0_18_0_ID:
return V_0_18_0;
case V_0_18_1_ID:
return V_0_18_1;
case V_0_19_0_ID:
return V_0_19_0;
default:
return new Version(id, null);
}