From eafca84717b4c4c5720b714de8408b9e49269ba4 Mon Sep 17 00:00:00 2001 From: zzz Date: Sat, 27 Oct 2012 13:03:14 +0000 Subject: [PATCH] 0.9.3 --- core/java/src/net/i2p/CoreVersion.java | 2 +- history.txt | 2 ++ installer/install.xml | 4 ++-- installer/resources/news.xml | 18 ++++++++++-------- .../java/src/net/i2p/router/RouterVersion.java | 4 ++-- 5 files changed, 17 insertions(+), 13 deletions(-) diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 33be4db70..dd2111bd4 100644 --- a/core/java/src/net/i2p/CoreVersion.java +++ b/core/java/src/net/i2p/CoreVersion.java @@ -16,7 +16,7 @@ package net.i2p; public class CoreVersion { /** deprecated */ public final static String ID = "Monotone"; - public final static String VERSION = "0.9.2"; + public final static String VERSION = "0.9.3"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index c4a7ba900..036781954 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +* 2012-10-27 0.9.3 released + 2012-10-25 zzz * BuildHandler: Fix "too slow" rejections due to internal clock skew diff --git a/installer/install.xml b/installer/install.xml index 5bdb2e4ad..e1b7d322d 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,9 +4,9 @@ i2p - 0.9.2 + 0.9.3 - + http://www.i2p2.de/ 1.5 diff --git a/installer/resources/news.xml b/installer/resources/news.xml index 342dfab93..e91850b72 100644 --- a/installer/resources/news.xml +++ b/installer/resources/news.xml @@ -1,16 +1,18 @@
-

2012-09-21: 0.9.2 Released

+

2012-10-27: 0.9.3 Released

-0.9.2 includes extensive low-level changes to improve the performance and efficiency of the router. -We have updated our UPnP library, to hopefully make UPnP work for more people. -I2PSnark now has DHT support, but it is not yet enabled by default, as we plan to do more -testing during the upcoming 0.9.3 development cycle. -As usual, there's also lots of bug fixes in this release, so updating is recommended. +0.9.3 includes extensive low-level changes to the queueing of messages in the router. +We implement the CoDel Active Queue Management (AQM) algoorithm. +We also unify the queueing and priority mechanisms in the transports to aid diagnosis and reduce network latency. +Work continues on fixing UDP transport bugs and making UDP more resistant to attacks. +There are more changes to improve the performance of the router and reduce its memory usage. +Also, we enable i2psnark's DHT support, introduced last release, by default. +As usual, there's also lots of bug fixes in this release, so updating is recommended.

Say hello to the volunteers on the #i2p-help IRC channel. Get involved, diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index a85b0c8aa..a411b0099 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,10 +18,10 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 22; + public final static long BUILD = 0; /** for example "-test" */ - public final static String EXTRA = "-rc"; + public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA; public static void main(String args[]) { System.out.println("I2P Router version: " + FULL_VERSION);