diff --git a/history.txt b/history.txt index 9105247bf..e7edc851f 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,53 @@ +2010-03-18 zzz + * Blocklist, CommSystem, FIFOBandwidth, TransportManager, + OutNetMessage, InNetMessagePool: + - Java 5 cleanup + * ByteCache: + - Replace some locks with concurrent + * Clients: + - Negative delay means run immediately and inline + - Add methods to test class and run inline, + to propagate errors to the console + - Use new methods for plugins + - Add javadoc for clients.config format + * config.jsp: Set burst to +10% for 20s by default, + to fix bug where the burst stays high when limits + are reduced. + * FIFOBandwidthRefiller: + - Replace global counters with atomics + - Use lockless shortcut methods to grant + requests if we can satisfy immediately + * i2psnark: Tweak upload bw tracking + * Installer: Enable pack200 (-3.3MB) + * Job Queue: + - Replace some locks with concurrent + - Change job ID to a long so it won't wrap + - Remove some unused stats + - Java 5 and debug cleanup + * KeyManager: Concurrent + * logs.jsp: Add link to trac + * netdb.jsp: Display transport cost if not default + * Peer Manager: + - Replace some locks with concurrent + - Switch back to fast version of getPeersByCapability() + - Java 5 cleanup + * Streaming: Concurrent + * Throttle: + - Remove some unused stats + * Tunnel Builds: Enable VTBM + * Tunnel Dispatcher: Discard at IBGW based on router clock, + not system clock. + * TunnelGatewayPumper: + - Refactor for concurrent + * UDP: + - Big refactor of several classes for concurrent, + elimination of several locks + - Reduce max number of resent acks in a packet to + lower overhead + - Take incoming messages from the head of the queue, + not sure why taking them from the tail "reduces latency" + - Java 5 cleanup + * 2010-03-15 0.7.12 released 2010-03-13 zzz diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 200f91ede..b8546913b 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 = 0; + public final static long BUILD = 1; /** for example "-test" */ public final static String EXTRA = "";