Skip to content

Commit

Permalink
0.8.11
Browse files Browse the repository at this point in the history
  • Loading branch information
zzz committed Nov 7, 2011
1 parent 8ecf423 commit 530b481
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 15 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.10";
public final static String VERSION = "0.8.11";

public static void main(String args[]) {
System.out.println("I2P Core version: " + VERSION);
Expand Down
2 changes: 2 additions & 0 deletions history.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* 2011-11-08 0.8.11 released

2011-11-05 kytv
* Update geoip.txt based on Maxmind GeoLite Country
database from 2011-11-02
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.10</appversion>
<appversion>0.8.11</appversion>
<authors>
<author name="I2P" email="http://forum.i2p2.de/"/>
</authors>
Expand Down
35 changes: 24 additions & 11 deletions installer/resources/news.xml
Original file line number Diff line number Diff line change
@@ -1,25 +1,38 @@
<!--
<i2p.news date="$Date: 2011-10-20 00:00:00 $">
<i2p.release version="0.8.10" date="2011/10/20" minVersion="0.6" />
<i2p.news date="$Date: 2011-11-08 00:00:00 $">
<i2p.release version="0.8.11" date="2011/11/08" minVersion="0.6" />
-->
<div lang="en">
<h3>2011-10-20: <b>0.8.10 <a href="http://www.i2p2.i2p/release-0.8.10.html">Released</a></b></h3>
<h3>2011-11-08: <b>0.8.11 <a href="http://www.i2p2.i2p/release-0.8.11.html">Released</a></b></h3>

<p>
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.
The unprecedented network growth starting October 5th
has dramatically increased network congestion, especially on evenings (UTC)
and weekends. The last two releases contained a few changes that we hoped
would relieve the pressure, but unfortunately these measures have been only
modest successes. The primary issue is to limit the number of direct router
to-router connections in the network. This isn't a new problem; we've been
working on it for several years, usually with good results. However, the recent
growth pushed us over the edge once again.
</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
ask you to be patient as we make improvements to the software.
Release 0.8.11 includes several more changes to reduce the number of router-to-router
connections and increase connection and tunnel build capacity. The goal, of course,
is to improve tunnel build success rates and general reliability. As always, there's
a few bug fixes and translation updates.
</p><p>
We welcome all our new users. Please be patient as we work to improve network
performance. Debugging congestion problems in a distributed anonymous network
is a continuing challenge. Please help improve the network
by restarting your router once the upgrade is downloaded.

</p><p>
Say hello to the volunteers on the <a href="irc://127.0.0.1:6668/i2p-help">#i2p-help IRC channel</a>.
<a href="http://www.i2p2.i2p/getinvolved.html">Get involved</a>,
spread the word,
and <a href="http://www.i2p2.i2p/donate.html">donate</a>!
If you find a bug, please enter a report on <a href="http://trac.i2p2.i2p/report/1">trac</a>.
We are still looking for volunteers to work on new and existing translations.
Please volunteer on <a href="irc://127.0.0.1:6668/i2p">IRC #i2p-dev</a>.
To help on translations,
volunteer on <a href="irc://127.0.0.1:6668/i2p">IRC #i2p-dev</a>
or sign up on <a href="https://www.transifex.net/projects/p/I2P/">Transifex</a>.
</p>
</div>
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 = 7;
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 530b481

Please sign in to comment.