From c40b56c19df0e2bc4b48dc5dc123cd6322f3c744 Mon Sep 17 00:00:00 2001 From: zzz Date: Sat, 26 Dec 2009 20:28:11 +0000 Subject: [PATCH] -12 --- history.txt | 15 +++++++++++++++ router/java/src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index e23cb9cf04..b6f1a0ccfa 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,18 @@ +2009-12-26 zzz + * Console: + - Tag the rest of logs.jsp + * Tunnels, Transports: + - Lots of code to detect improper reuse of cached objects + after release + - Prevent release of TunnelDataMessage cached ByteArray, + as it may be reused if retried in another transport; + a nasty bug causing corrupt messages + - Prevent race with released resources in UDP OutboundMessageState; + a nasty bug causing corrupt messages + - More cleanups and comments + * UDP: Bid lower than NTCP when we need introducers and don't + have enough + 2009-12-22 zzz * Tunnels: - Do RED dropping before the IBGW fragmenter, not after diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 217d41d542..1de5f06515 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 = 11; + public finaj static long BUILD = 12; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;