Skip to content

Commit

Permalink
0.8.10
Browse files Browse the repository at this point in the history
  • Loading branch information
zzz committed Oct 19, 2011
1 parent a01c11c commit c90097e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 22 deletions.
2 changes: 1 addition & 1 deletion core/java/src/net/i2p/CoreVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class CoreVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = "0.8.9";
public final static String VERSION = "0.8.10";

public static void main(String args[]) {
System.out.println("I2P Core version: " + VERSION);
Expand Down
18 changes: 10 additions & 8 deletions history.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
* 2011-10-19 kytv
* 2011-10-20 0.8.10 released

2011-10-19 kytv
* Update Italian translation from Transifex (thanks danimoth)

* 2011-10-19 zzz
* I2PTunnel: Fix timeout message on POST (ticket # )
2011-10-19 zzz
* I2PTunnel: Fix timeout message on POST (ticket #531)
* NetDB: Reduce RI max expiration again

* 2011-10-18 zzz
2011-10-18 zzz
* StoreJob: Ensure nonzero token
* Tunnels: Connection limit mitigation:
- Disable tunnel testing
- Implement closest-to-the-key tunnel selection
- Use closest-selection in NetDB lookups, stores, and verifies;
OCMOSJ; and in BuildRequestor

* 2011-10-17 zzz
2011-10-17 zzz
* BuildExecutor: Efficiency tweak
* Console: Hide tunnel lag if tunnel testing is disabled
* NetDB: Fix rare NPE from netdb.jsp (ticket #539)
Expand All @@ -23,7 +25,7 @@
* SSU: Increase max concurrent outbound attempts;
fix udp.establishRejected stat

* 2011-10-15 zzz
2011-10-15 zzz
* BuildExecutor: Add tunnel.buildConfigTime stat
* configupdate.jsp:
- Fix setting to 'never' (ticket #523)
Expand All @@ -49,9 +51,9 @@
* SSLEepGet:
- Add gunzip support
- Increase buffer size
* SSU: Fix concurrency errors (ticket #536)
* SSU: Fix concurrency errors (ticket #536) \

* 2011-10-13 kytv
2011-10-13 kytv
* Updated translations from Transifex
- Swedish: debconf and i2psnark
- Finnish: router console
Expand Down
2 changes: 1 addition & 1 deletion installer/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<info>
<appname>i2p</appname>
<appversion>0.8.9</appversion>
<appversion>0.8.10</appversion>
<authors>
<author name="I2P" email="http://forum.i2p2.de/"/>
</authors>
Expand Down
16 changes: 6 additions & 10 deletions installer/resources/news.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
<!--
<i2p.news date="$Date: 2011-10-11 00:00:00 $">
<i2p.release version="0.8.9" date="2011/10/11" minVersion="0.6" />
<i2p.news date="$Date: 2011-10-20 00:00:00 $">
<i2p.release version="0.8.10" date="2011/10/20" minVersion="0.6" />
-->
<div lang="en">
<h3>2011-10-11: <b>0.8.9 <a href="http://www.i2p2.i2p/release-0.8.9.html">Released</a></b></h3>
<h3>2011-10-20: <b>0.8.10 <a href="http://www.i2p2.i2p/release-0.8.10.html">Released</a></b></h3>

<p>
The 0.8.9 release has several performance improvements, and many changes to handle
the continued rapid growth of the network. It uses a new iterative method for
Kademlia network database lookups that should be more reliable and efficient.
There are also several improvements to our SSU (UDP) transport protocol that
should help reliability and efficiency. We have made several changes to
improve tunnel build success rates. And, of course, there are lots of bug
fixes and translation updates.
Release 0.8.10 includes two changes intended to reduce the number of router-to-router connections,
and therefore improve tunnel build success rates and general reliability.
Of course, there's also a few bug fixes and translation updates.
</p><p>
The network has grown quite rapidly in recent weeks, and that's great news,
but it has caused some instability. We welcome all our new users and we
Expand Down
4 changes: 2 additions & 2 deletions router/java/src/net/i2p/router/RouterVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 5;
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);
Expand Down

0 comments on commit c90097e

Please sign in to comment.