diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 9f4071800..7465774e2 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.7.11"; + public final static String VERSION = "0.7.12"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index 44312c69b..9105247bf 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +* 2010-03-15 0.7.12 released + 2010-03-13 zzz * Partial fix for i2ptunnel nonce troubles diff --git a/installer/install.xml b/installer/install.xml index 06e55256d..c4931cb90 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.7.11 + 0.7.12 diff --git a/installer/resources/initialNews.xml b/installer/resources/initialNews.xml index dd40850c2..7f46cec45 100644 --- a/installer/resources/initialNews.xml +++ b/installer/resources/initialNews.xml @@ -1,6 +1,6 @@

diff --git a/installer/resources/news.xml b/installer/resources/news.xml index 9a76a074f..8a31fb44f 100644 --- a/installer/resources/news.xml +++ b/installer/resources/news.xml @@ -1,21 +1,29 @@ -

+

-The 0.7.11 release fixes several issues, some related to clocks, which prevented new routers from quickly integrating into the network. -It also fixes the installer for 64-bit Windows. -The release includes an -update to Jetty 5.1.15 -to fix this vulnerability. +The 0.7.12 release contains support for user-generated plugins. These plugins may contain console web applications, +themes, translations, or standalone programs. +Some plugins are available for testing at +i2pbote.i2p +and +stats.i2p. +We are hopeful this support will enable rapid development of innovative i2p applications. +

+The release fixes the blank-page bug when an eepsite is not reachable, +and also improves handling of clock skews and IP changes. +It adds support for a new, smaller tunnel build message, +that will be tested in this release and enabled in the next release.

As usual, the release contains more anonymity and performance improvements, -and an assortment of bug fixes. +translation updates, and an assortment of other bug fixes. Upgrading is recommended.

-We already have more big improvements in development for the next two releases. -Please give the +The last 6 months of development have dramatically increased the performance and capacity of the network. +Please help grow the network. +Give the developers feedback on IRC #i2p or forum.i2p and get involved, spread the word, diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 138e7939b..200f91ede 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 = 11; + 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);