diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 968bed9d39..33be4db709 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.9.1"; + public final static String VERSION = "0.9.2"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/core/java/src/net/i2p/client/I2PSession.java b/core/java/src/net/i2p/client/I2PSession.java index 598ddf1f90..661ea2fff3 100644 --- a/core/java/src/net/i2p/client/I2PSession.java +++ b/core/java/src/net/i2p/client/I2PSession.java @@ -278,7 +278,7 @@ public interface I2PSession { /** * A raw (unsigned) datagram - * @since 0.9.1 + * @since 0.9.2 */ public static final int PROTO_DATAGRAM_RAW = 18; } diff --git a/history.txt b/history.txt index 8650baac6d..7f6dc4c3cc 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +* 2012-09-21 0.9.2 released + 2012-09-15 zzz * Build: Fix unpack problem on Java 5: http://forum.i2p/viewtopic.php?t=7334 diff --git a/installer/install.xml b/installer/install.xml index 7e77951a28..5bdb2e4ad8 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.9.1 + 0.9.2 diff --git a/installer/resources/news.xml b/installer/resources/news.xml index 3bec527ca2..342dfab937 100644 --- a/installer/resources/news.xml +++ b/installer/resources/news.xml @@ -1,14 +1,16 @@
-

2012-07-30: 0.9.1 Released

+

2012-09-21: 0.9.2 Released

-0.9.1 includes a large number of bug fixes and improvements in i2psnark, streaming, and elsewhere. -There are also home page changes, new themes, and translation updates. -Upgrading is recommended. +0.9.2 includes extensive low-level changes to improve the performance and efficiency of the router. +We have updated our UPnP library, to hopefully make UPnP work for more people. +I2PSnark now has DHT support, but it is not yet enabled by default, as we plan to do more +testing during the upcoming 0.9.3 development cycle. +As usual, there's also lots of bug fixes in this release, so updating 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 3c775e75ad..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 = 25; + 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);