diff --git a/history.txt b/history.txt index 434e2cc1a..dcac2807d 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,23 @@ +2008-05-05 zzz + * NetDb Stats: Cleanup of commented out stats + * Outbound message: + - Fix a couple of tunnel cache cleaning bugs + - Cache based on source+dest pairs rather than just dest + - Send the reply leaseSet only when necessary, + rather than all the time (big savings in overhead) + - Enable persistent lease selection again + - Logging tweaks + * Reachability: + - Restrict <= .32 SSU-only peers from inbound tunnels, + since they don't know if they are unreachable + - Have SSU bid aggressively when it has less than 3 peers, so + we can determine our IP address and do peer testing. + Otherwise a router may never determine its IP address or reachability status. + * Summary bar: + - Add reachability status + - Add participating tunnel acceptance status + * Throttle: Reject tunnels for first 10m uptime + * 2008-04-26 0.6.1.33 released 2008-04-20 zzz diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 2863408cd..a0f09bdb3 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -17,7 +17,7 @@ import net.i2p.CoreVersion; public class RouterVersion { public final static String ID = "$Revision: 1.548 $ $Date: 2008-02-10 15:00:00 $"; public final static String VERSION = "0.6.1.33"; - public final static long BUILD = 0; + public final static long BUILD = 1; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);