diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index bdf3919f8f..0c7779b778 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.10"; + public final static String VERSION = "0.8.11"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index ed7fc77cd6..ddd99bd853 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +* 2011-11-08 0.8.11 released + 2011-11-05 kytv * Update geoip.txt based on Maxmind GeoLite Country database from 2011-11-02 diff --git a/installer/install.xml b/installer/install.xml index 8d9b3c181b..5b2f605bfe 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.8.10 + 0.8.11 diff --git a/installer/resources/news.xml b/installer/resources/news.xml index 1d30b7dc94..7c764e5c69 100644 --- a/installer/resources/news.xml +++ b/installer/resources/news.xml @@ -1,25 +1,38 @@
-

2011-10-20: 0.8.10 Released

+

2011-11-08: 0.8.11 Released

-Release 0.8.10 includes two changes intended to reduce the number of router-to-router connections, -and therefore improve tunnel build success rates and general reliability. -Of course, there's also a few bug fixes and translation updates. +The unprecedented network growth starting October 5th +has dramatically increased network congestion, especially on evenings (UTC) +and weekends. The last two releases contained a few changes that we hoped +would relieve the pressure, but unfortunately these measures have been only +modest successes. The primary issue is to limit the number of direct router +to-router connections in the network. This isn't a new problem; we've been +working on it for several years, usually with good results. However, the recent +growth pushed us over the edge once again.

-The network has grown quite rapidly in recent weeks, and that's great news, -but it has caused some instability. We welcome all our new users and we -ask you to be patient as we make improvements to the software. +Release 0.8.11 includes several more changes to reduce the number of router-to-router +connections and increase connection and tunnel build capacity. The goal, of course, +is to improve tunnel build success rates and general reliability. As always, there's +a few bug fixes and translation updates. +

+We welcome all our new users. Please be patient as we work to improve network +performance. Debugging congestion problems in a distributed anonymous network +is a continuing challenge. Please help improve the network +by restarting your router once the upgrade is downloaded. +

Say hello to the volunteers on the #i2p-help IRC channel. Get involved, spread the word, and donate! If you find a bug, please enter a report on trac. -We are still looking for volunteers to work on new and existing translations. -Please volunteer on IRC #i2p-dev. +To help on translations, +volunteer on IRC #i2p-dev +or sign up on Transifex.

diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index c76c0f106b..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 = 7; + 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);