diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 860747c760..1d05325c75 100644 --- a/core/java/src/net/i2p/CoreVersion.java +++ b/core/java/src/net/i2p/CoreVersion.java @@ -16,7 +16,7 @@ public class CoreVersion { /** deprecated */ public final static String ID = "Monotone"; - public final static String VERSION = "0.8.2"; + public final static String VERSION = "0.8.3"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index e7ed2db0d1..b7f9b2d0c3 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +* 2011-01-24 0.8.3 released + 2011-01-16 zzz * Console: Allow editing of console args * UDP: Prevent rare startup NPE diff --git a/installer/install.xml b/installer/install.xml index 5b685f0a35..e48aa9164f 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.8.2 + 0.8.3 diff --git a/installer/resources/news.xml b/installer/resources/news.xml index e542e7a249..b33b74b3df 100644 --- a/installer/resources/news.xml +++ b/installer/resources/news.xml @@ -1,17 +1,24 @@
-

2010-12-22: 0.8.2 Released

+

2011-01-24: 0.8.3 Released

-The 0.8.2 release includes extensive bug fixes and theme updates in the router and in i2psnark. -There are also optimizations to reduce memory usage in i2psnark. -The HTTP and SOCKS proxies now support local and remote authorization. -As usual, upgrading is recommended. +The 0.8.3 release contains several performance improvements, including reduction of threads and +memory usage, and faster I2CP (client-router) communication.

-I2P will be at 27C3 in Berlin the week of the December 27th. -Look for the I2P people there and ask for I2P stickers! +There is also new SSL router console support +(instructions here), +a new reseed configuration page including HTTP proxy support for those behind restrictive firewalls, +a new I2CP configuration section including I2CP-over-SSL support for remote clients, +a new server connection limits and blacklist configuration section for enhanced DoS protection, +and a new +HTTP proxy jump server configuration section so you may easily add alternative jump servers. +Statistics are now limited by default to reduce memory usage; the full set of statistics may be re-enabled on the +stats configuration page. +There are also bug fixes, of course, so +as usual, upgrading is recommended.

Please help grow the network. Say hello to the volunteers on the #i2p-help IRC channel. diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index cef5686075..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 = 12; + 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);