diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 33be4db709..dd2111bd4e 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 c4a7ba9009..0367819546 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 5bdb2e4ad8..e1b7d322da 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 342dfab937..e91850b721 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 a85b0c8aa2..a411b00998 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);