From ced0ba20a7ffba7fdf05466d00bf6cb585c28bc9 Mon Sep 17 00:00:00 2001 From: Matthew Toseland Date: Sun, 5 Jun 2016 15:18:14 +0100 Subject: [PATCH] Build 1474, mandatory in a week but crucial bugfixes --- src/freenet/node/Version.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/freenet/node/Version.java b/src/freenet/node/Version.java index fe7010d65f8..4350c7eecdc 100644 --- a/src/freenet/node/Version.java +++ b/src/freenet/node/Version.java @@ -50,18 +50,18 @@ public class Version { public static final String protocolVersion = "1.0"; /** The build number of the current revision */ - private static final int buildNumber = 1473; + private static final int buildNumber = 1474; /** Oldest build of fred we will talk to *before* _cal */ - private static final int oldLastGoodBuild = 1466; + private static final int oldLastGoodBuild = 1472; /** Oldest build of fred we will talk to *after* _cal */ - private static final int newLastGoodBuild = 1472; + private static final int newLastGoodBuild = 1474; static final long transitionTime; static { final Calendar _cal = Calendar.getInstance(TimeZone.getTimeZone("GMT")); // year, month - 1 (or constant), day, hour, minute, second - _cal.set( 2016, Calendar.JUNE, 5, 0, 0, 0 ); + _cal.set( 2016, Calendar.JUNE, 12, 0, 0, 0 ); transitionTime = _cal.getTimeInMillis(); }