diff --git a/history.txt b/history.txt index 907e71655..d324dcded 100644 --- a/history.txt +++ b/history.txt @@ -1,6 +1,7 @@ 2009-12-12 zzz * Disable InternalSockets until it's fixed * Sort peers on tunnels.jsp by country + * fix NPE in ^^ 2009-12-11 zzz * Addressbook, susidns: Rework addressbook into a diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index e4d51a2bb..b54d1de4b 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,7 +18,7 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 4; + public final static long BUILD = 5; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;