diff --git a/history.txt b/history.txt index 6888a92057..8c3f607ca1 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,15 @@ +2009-04-08 zzz + * IPV6/localhost: + - Enable IPv6 stack in the JVM, hopefully won't break anything + - Patch Jetty to support binding to IPv6 addresses + - Allow multiple bind addresses for the router console + in the clients.config file; for new installs the + default is now "127.0.0.1,::1" + - Change most instances of "localhost" to "127.0.0.1" + throughout the code + * Router: + - Move some classes to private static inner + 2009-04-07 sponge * BOB prevent jvac from optimizing out thread-group code from -10 diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 202b80d658..f99f19adaf 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-06-07 23:00:00 $"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 12; + public final static long BUILD = 13; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);