Author: toad
Date: 2008-02-14 15:46:34 +0000 (Thu, 14 Feb 2008)
New Revision: 17892
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1111: doh. Don't make mandatory instantly!
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-02-14 15:44:00 UTC (rev
17891)
+++ trunk/freenet/src/freenet/node/Version.java 2008-02-14 15:46:34 UTC (rev
17892)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1110;
+ private static final int buildNumber = 1111;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1108;
- private static final int newLastGoodBuild = 1110;
+ private static final int newLastGoodBuild = 1111;
static final long transitionTime;
static {
final Calendar _cal =
Calendar.getInstance(TimeZone.getTimeZone("GMT"));
// year, month - 1 (or constant), day, hour, minute, second
- _cal.set( 2008, Calendar.FEBRUARY, 12, 0, 0, 0 );
+ _cal.set( 2008, Calendar.FEBRUARY, 18, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}