Author: toad
Date: 2008-01-29 12:49:22 +0000 (Tue, 29 Jan 2008)
New Revision: 17383
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1107: Make 1106 mandatory *immediately* to test timeout fixes. Make self
mandatory at midnight.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2008-01-29 12:48:20 UTC (rev
17382)
+++ trunk/freenet/src/freenet/node/Version.java 2008-01-29 12:49:22 UTC (rev
17383)
@@ -24,17 +24,17 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1106;
+ private static final int buildNumber = 1107;
/** Oldest build of Fred we will talk to */
- private static final int oldLastGoodBuild = 1104;
- private static final int newLastGoodBuild = 1106;
+ private static final int oldLastGoodBuild = 1106;
+ private static final int newLastGoodBuild = 1107;
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.JANUARY, 29, 18, 0, 0 );
+ _cal.set( 2008, Calendar.JANUARY, 30, 0, 0, 0 );
transitionTime = _cal.getTimeInMillis();
}