Skip to content

Commit acf22bf

Browse files
author
complication
committed
* Write announcement and prepare for release
1 parent a8e6250 commit acf22bf

File tree

6 files changed

+23
-15
lines changed

6 files changed

+23
-15
lines changed

core/java/src/net/i2p/CoreVersion.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
*
1515
*/
1616
public class CoreVersion {
17-
public final static String ID = "$Revision: 1.72 $ $Date: 2007-08-23 19:33:31 $";
18-
public final static String VERSION = "0.6.1.33";
17+
public final static String ID = "$Revision: 1.72 $ $Date: 2008-06-07 23:00:00 $";
18+
public final static String VERSION = "0.6.2";
1919

2020
public static void main(String args[]) {
2121
System.out.println("I2P Core version: " + VERSION);

history.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
* 2008-06-07 0.6.2 released
2+
3+
2008-06-07 Complication
4+
* Write announcement and prepare for release
5+
16
2008-05-29 zzz
27
* Transport:
38
- NTCP and UDP: Don't bid to connect to private IP addresses, mark unreachable

initialNews.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<i2p.news date="$Date: 2008-04-26 15:00:00 $">
2-
<i2p.release version="0.6.1.33" date="2008/04/26" minVersion="0.6"
1+
<i2p.news date="$Date: 2008-06-07 23:00:00 $">
2+
<i2p.release version="0.6.2" date="2008/06/07" minVersion="0.6"
33
/>
44
<center><h2>Congratulations on getting I2P installed!</h2></center>
55
<ul>

installer/install.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<info>
66
<appname>i2p</appname>
7-
<appversion>0.6.1.33</appversion>
7+
<appversion>0.6.2</appversion>
88
<authors>
99
<author name="I2P" email="http://forum.i2p2.de/"/>
1010
</authors>

news.xml

+10-7
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,17 @@
1111
publiclogs="http://www.i2p.net/meeting141" />
1212
<p>
1313
&#149;
14-
2008-04-26: <b>0.6.1.33 <a href="http://www.i2p2.i2p/release-0.6.1.33.html">Released</a></b>
14+
2008-06-07: <b>0.6.2 <a href="http://www.i2p2.i2p/release-0.6.2.html">Released</a></b>
1515
</p><p>
16-
The 0.6.1.33 release contains several important bug fixes and performance improvements
17-
in SSU reachability detection, floodfill peer selection, tunnel peer selection, tunnel testing,
18-
NTCP idle detection, the streaming lib, and news fetching.
19-
It also adds secondary tracker support to i2psnark.
20-
Please upgrade as soon as you can, as these fixes
21-
should improve the reliability of the whole network.
16+
The 0.6.2 release delivers notable performance and anonymity improvements.
17+
LeaseSet data is no longer added to every end-to-end message, reducing protocol overhead.
18+
Unreachable peers are avoided as inbound tunnel gateways,
19+
which helps reliability and makes it possible to use persistent Lease selection,
20+
which in turn helps performance by reducing out-of-order message delivery.
21+
The sequence of peers in a tunnel is now kept in a strict order
22+
according to XOR distance from a random value, to make it harder
23+
for an adversary to gather meaningful statistics for a predecessor attack.
24+
Improvements to applications like I2PSnark and the Router Console are also introduced.
2225
</p>
2326

2427
<p>

router/java/src/net/i2p/router/RouterVersion.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
*
1616
*/
1717
public class RouterVersion {
18-
public final static String ID = "$Revision: 1.548 $ $Date: 2008-02-10 15:00:00 $";
19-
public final static String VERSION = "0.6.1.33";
20-
public final static long BUILD = 9;
18+
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $";
19+
public final static String VERSION = "0.6.2";
20+
public final static long BUILD = 0;
2121
public static void main(String args[]) {
2222
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
2323
System.out.println("Router ID: " + RouterVersion.ID);

0 commit comments

Comments
 (0)