* Write announcement and prepare for release
This commit is contained in:
@ -14,8 +14,8 @@ package net.i2p;
|
||||
*
|
||||
*/
|
||||
public class CoreVersion {
|
||||
public final static String ID = "$Revision: 1.72 $ $Date: 2007-08-23 19:33:31 $";
|
||||
public final static String VERSION = "0.6.1.33";
|
||||
public final static String ID = "$Revision: 1.72 $ $Date: 2008-06-07 23:00:00 $";
|
||||
public final static String VERSION = "0.6.2";
|
||||
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Core version: " + VERSION);
|
||||
|
@ -1,3 +1,8 @@
|
||||
* 2008-06-07 0.6.2 released
|
||||
|
||||
2008-06-07 Complication
|
||||
* Write announcement and prepare for release
|
||||
|
||||
2008-05-29 zzz
|
||||
* Transport:
|
||||
- NTCP and UDP: Don't bid to connect to private IP addresses, mark unreachable
|
||||
|
@ -1,5 +1,5 @@
|
||||
<i2p.news date="$Date: 2008-04-26 15:00:00 $">
|
||||
<i2p.release version="0.6.1.33" date="2008/04/26" minVersion="0.6"
|
||||
<i2p.news date="$Date: 2008-06-07 23:00:00 $">
|
||||
<i2p.release version="0.6.2" date="2008/06/07" minVersion="0.6"
|
||||
/>
|
||||
<center><h2>Congratulations on getting I2P installed!</h2></center>
|
||||
<ul>
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
<info>
|
||||
<appname>i2p</appname>
|
||||
<appversion>0.6.1.33</appversion>
|
||||
<appversion>0.6.2</appversion>
|
||||
<authors>
|
||||
<author name="I2P" email="http://forum.i2p2.de/"/>
|
||||
</authors>
|
||||
|
17
news.xml
17
news.xml
@ -11,14 +11,17 @@
|
||||
publiclogs="http://www.i2p.net/meeting141" />
|
||||
<p>
|
||||
•
|
||||
2008-04-26: <b>0.6.1.33 <a href="http://www.i2p2.i2p/release-0.6.1.33.html">Released</a></b>
|
||||
2008-06-07: <b>0.6.2 <a href="http://www.i2p2.i2p/release-0.6.2.html">Released</a></b>
|
||||
</p><p>
|
||||
The 0.6.1.33 release contains several important bug fixes and performance improvements
|
||||
in SSU reachability detection, floodfill peer selection, tunnel peer selection, tunnel testing,
|
||||
NTCP idle detection, the streaming lib, and news fetching.
|
||||
It also adds secondary tracker support to i2psnark.
|
||||
Please upgrade as soon as you can, as these fixes
|
||||
should improve the reliability of the whole network.
|
||||
The 0.6.2 release delivers notable performance and anonymity improvements.
|
||||
LeaseSet data is no longer added to every end-to-end message, reducing protocol overhead.
|
||||
Unreachable peers are avoided as inbound tunnel gateways,
|
||||
which helps reliability and makes it possible to use persistent Lease selection,
|
||||
which in turn helps performance by reducing out-of-order message delivery.
|
||||
The sequence of peers in a tunnel is now kept in a strict order
|
||||
according to XOR distance from a random value, to make it harder
|
||||
for an adversary to gather meaningful statistics for a predecessor attack.
|
||||
Improvements to applications like I2PSnark and the Router Console are also introduced.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
|
||||
*
|
||||
*/
|
||||
public class RouterVersion {
|
||||
public final static String ID = "$Revision: 1.548 $ $Date: 2008-02-10 15:00:00 $";
|
||||
public final static String VERSION = "0.6.1.33";
|
||||
public final static long BUILD = 9;
|
||||
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $";
|
||||
public final static String VERSION = "0.6.2";
|
||||
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);
|
||||
|
Reference in New Issue
Block a user