diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 685abc2f0..6b3f02efa 100644 --- a/core/java/src/net/i2p/CoreVersion.java +++ b/core/java/src/net/i2p/CoreVersion.java @@ -15,7 +15,7 @@ package net.i2p; */ public class CoreVersion { public final static String ID = "$Revision: 1.72 $ $Date: 2008-08-24 12:00:00 $"; - public final static String VERSION = "0.7.2"; + public final static String VERSION = "0.7.3"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index e802d6da4..391cc5281 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,8 @@ +* 2009-05-16 0.7.3 released + +2009-05-16 Complication + * Update versions, package release + 2009-05-12 sponge * BOB clean up, change println's to _log.warn, bump BOB version * I2PSessionMuxedImpl.java changes as per zzz, and they test OK for me. diff --git a/initialNews.xml b/initialNews.xml index ed08caba2..a07ac5b6e 100644 --- a/initialNews.xml +++ b/initialNews.xml @@ -1,5 +1,5 @@ - - +

Congratulations on getting I2P installed!

    diff --git a/installer/install.xml b/installer/install.xml index 74cd95cb4..89b2be28b 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.7.2 + 0.7.3 diff --git a/news.xml b/news.xml index e5bb34a21..6b51926b5 100644 --- a/news.xml +++ b/news.xml @@ -1,5 +1,5 @@ - - +

    • -2009-04-18: 0.7.2 Released +2009-05-16: 0.7.3 Released

    -The 0.7.2 release fixes multiple bugs and potential problems -in I2P, while preparing ground for new functionality. +I2P version 0.7.3 contains several buxfixes and improvements, +includes a lot of maintenance work and new versions of +both the SAM and BOB application gateway protocols.

    -Threading issues with the SimpleTimer class should no longer occur, -the NTCP transport should no longer encounter null pointer exceptions, -and "abandoned" tunnels should finish operation correctly. +A patch to I2P's internal web server Jetty is included +to correct SusiDNS behaviour on Windows. The way I2P nodes +volunteer to participate in the Network Database is changed +to avoid too many doing this simultaneously, and creation +of new participating tunnels is now throttled before messages +in existing tunnels start to get dropped.

    -Support is added for accessing the Router Console over IPv6, -a new message type enables I2CP applications to query -the router's bandwidth limits, an experimental desktop interface -for managing the router is included for the first time -(but not enabled automatically yet) and participation of a single peer -in too many tunnels is prevented to improve reliability and safety. -

    -Besides other maintenance work, several old statistics calculators -are dropped to make router profiles smaller and quicker, while -new build scripts are supplied for I2P's big integer math library. -Updating is highly recommended. +Multiple improvements to the Router Console and other components +are included, I2PSnark can handle bigger torrents and more files, +while work continues on the experimental desktop interface. +Updating is recommended.

    diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index e4b934bb2..e629555b6 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,7 +18,7 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 14; + public final static long BUILD = 0; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;