Author: toad
Date: 2007-07-19 11:30:01 +0000 (Thu, 19 Jul 2007)
New Revision: 14192
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1047: Sorry, make it mandatory 0:00 on the 21st, not the 19th.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-07-19 11:29:01 UTC (rev
14191)
+++ trunk/freenet/src/freenet/node/Version.java 2007-07-19 11:30:01 UTC (rev
14192)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1046;
+ private static final int buildNumber = 1047;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1045;
- private static final int newLastGoodBuild = 1046;
+ private static final int newLastGoodBuild = 1047;
static final long transitionTime;
static {
final Calendar _cal =
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
// year, month - 1 (or constant), day, hour, minute, second
- _cal.set( 2007, Calendar.JULY, 19, 0, 0, 0 );
+ _cal.set( 2007, Calendar.JULY, 21, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}