From 7377086aae2a1066c241c5c2c85803e4c1c59a48 Mon Sep 17 00:00:00 2001 From: zzz Date: Mon, 16 May 2011 19:58:19 +0000 Subject: [PATCH] 0.8.6 --- core/java/src/net/i2p/CoreVersion.java | 2 +- history.txt | 2 ++ installer/install.xml | 2 +- installer/resources/news.xml | 11 ++++++----- router/java/src/net/i2p/router/RouterVersion.java | 4 ++-- 5 files changed, 12 insertions(+), 9 deletions(-) diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 4039caa82..6005a7348 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.5"; + public final static String VERSION = "0.8.6"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index 6734cf9b3..b552cc43e 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +* 2011-05-16 0.8.6 released + 2011-05-13 zzz * Increase min floodfills; decrease min routerinfo expiration diff --git a/installer/install.xml b/installer/install.xml index 2f2e03f47..4c0e9057e 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.8.5 + 0.8.6 diff --git a/installer/resources/news.xml b/installer/resources/news.xml index 9006e0c8e..e978528c5 100644 --- a/installer/resources/news.xml +++ b/installer/resources/news.xml @@ -1,12 +1,13 @@
-

2011-04-18: 0.8.5 Released

+

2011-05-16: 0.8.6 Released

-The 0.8.5 release contains a few bug fixes and performance improvements, and lots of translation updates. -As usual, upgrading is recommended. +The 0.8.6 release contains more peer selection defenses to resist powerful attackers, and +tweaks to adjust to the recent rapid growth in the network. +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 ba403a9f3..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 = 5; + 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);