From fc9e3ee77d048c23736efde4a8020d3d12fa924d Mon Sep 17 00:00:00 2001 From: complication Date: Sat, 18 Apr 2009 22:33:00 +0000 Subject: [PATCH] * Update versions, package release --- core/java/src/net/i2p/CoreVersion.java | 2 +- history.txt | 5 +++ initialNews.xml | 4 +-- installer/install.xml | 2 +- news.xml | 36 +++++++++---------- .../src/net/i2p/router/RouterVersion.java | 2 +- 6 files changed, 28 insertions(+), 23 deletions(-) diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 6c924fe109..685abc2f05 100644 --- a/core/java/src/net/i2p/CoreVersion.java +++ b/core/java/src/net/i2p/CoreVersion.java @@ -15,7 +15,7 @@ */ 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.1"; + public final static String VERSION = "0.7.2"; public static void main(String args[]) { System.out.println("I2P Core version: " + VERSION); diff --git a/history.txt b/history.txt index ff522acbd5..79bac1b7cc 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,8 @@ +* 2009-04-18 0.7.2 released + +2009-04-18 Complication + * Update versions, package release + 2009-04-17 sponge * fixed setIP, just be sure to distclean before building :-) * more lint taken care of as well. diff --git a/initialNews.xml b/initialNews.xml index 0306dcd7b2..ed08caba2d 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 125e92231c..74cd95cb4d 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.7.1 + 0.7.2 diff --git a/news.xml b/news.xml index b85e0f1308..73808d6386 100644 --- a/news.xml +++ b/news.xml @@ -1,5 +1,5 @@ - - +

    • -2009-03-29: 0.7.1 Released +2009-04-18: 0.7.2 Released

    -The 0.7.1 release optimizes I2P towards better performance -and introduces new features. +The 0.7.2 release fixes multiple bugs and potential problems +in I2P, while preparing ground for new functionality.

    -Multiple bugs are fixed, replacements to the SimpleTimer class -should waste less time on object locking. Some old components -are dropped and several classes refactored to avoid repeating code. +Threading issues with the SimpleTimer should no longer occur, +the NTCP transport should no longer encounter null pointer exceptions, +and "abandoned" tunnels should finish operation correctly.

    -Support for encrypted LeaseSets (for creation of links over I2P -which an adversary cannot obstruct by attacking its gateways) -becomes more complete. New tunnel types like IRC server tunnels -and new options like delayed start and idling of tunnels -also gain support, along with improved usability of the I2P -Socks proxy mechanism. +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.

    -Work continues on streamlining and expanding the Router Console, -on the BOB protocol, on I2P ports for Debian and Slackware Linux, -on the I2PSnark client, on TCP connection properties -and multiple other fronts. Updating is highly recommended. +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.

    diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index eb14294833..450adcf289 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -17,7 +17,7 @@ public class RouterVersion { public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 21; + public final static long BUILD = 0; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);