diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 0c7779b778..50ea690685 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.8.11"; + public final static String VERSION = "0.8.12"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index 583f3a449f..eb14086508 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +* 2012-01-06 0.8.12 released + 2012-01-04 kytv * Update geoip.txt based on Maxmind GeoLite Country database from 2011-12-08 diff --git a/installer/install.xml b/installer/install.xml index 5b2f605bfe..cb56124e01 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.8.11 + 0.8.12 diff --git a/installer/resources/news.xml b/installer/resources/news.xml index 7c764e5c69..324c580644 100644 --- a/installer/resources/news.xml +++ b/installer/resources/news.xml @@ -1,30 +1,15 @@
-

2011-11-08: 0.8.11 Released

+

2012-01-06: 0.8.12 Released

-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. -

-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. - +The 0.8.12 release fixes several serious message corruption bugs. +It also contains a redesign of the router's congestion control, and continued +optimization of CPU and memory usage. We are hopeful that these changes will +improve network performance. Upgrading 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 285b64c36d..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 = 28; + 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);