This commit is contained in:
zzz
2012-10-27 13:03:14 +00:00
parent 0bfe8ff41d
commit eafca84717
5 changed files with 17 additions and 13 deletions

View File

@@ -16,7 +16,7 @@ package net.i2p;
public class CoreVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = "0.9.2";
public final static String VERSION = "0.9.3";
public static void main(String args[]) {
System.out.println("I2P Core version: " + VERSION);

View File

@@ -1,3 +1,5 @@
* 2012-10-27 0.9.3 released
2012-10-25 zzz
* BuildHandler: Fix "too slow" rejections due to internal clock skew

View File

@@ -4,9 +4,9 @@
<info>
<appname>i2p</appname>
<appversion>0.9.2</appversion>
<appversion>0.9.3</appversion>
<authors>
<author name="I2P" email="http://forum.i2p2.de/"/>
<author name="I2P" email="http://www.i2p2.de/"/>
</authors>
<url>http://www.i2p2.de/</url>
<javaversion>1.5</javaversion>

View File

@@ -1,16 +1,18 @@
<!--
<i2p.news date="$Date: 2012-09-21 00:00:00 $">
<i2p.release version="0.9.2" date="2012/09/21" minVersion="0.6" />
<i2p.news date="$Date: 2012-10-27 00:00:00 $">
<i2p.release version="0.9.3" date="2012/10/27" minVersion="0.6" />
-->
<div lang="en">
<h3>2012-09-21: <b>0.9.2 <a href="http://www.i2p2.i2p/release-0.9.2.html">Released</a></b></h3>
<h3>2012-10-27: <b>0.9.3 <a href="http://www.i2p2.i2p/release-0.9.3.html">Released</a></b></h3>
<p>
0.9.2 includes extensive low-level changes to improve the performance and efficiency of the router.
We have updated our UPnP library, to hopefully make UPnP work for more people.
I2PSnark now has DHT support, but it is not yet enabled by default, as we plan to do more
testing during the upcoming 0.9.3 development cycle.
As usual, there's also lots of bug fixes in this release, so updating is recommended.
0.9.3 includes extensive low-level changes to the queueing of messages in the router.
We implement the CoDel Active Queue Management (AQM) algoorithm.
We also unify the queueing and priority mechanisms in the transports to aid diagnosis and reduce network latency.
Work continues on fixing UDP transport bugs and making UDP more resistant to attacks.
There are more changes to improve the performance of the router and reduce its memory usage.
Also, we enable i2psnark's DHT support, introduced last release, by default.
As usual, there's also lots of bug fixes in this release, so updating is recommended.
</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>,

View File

@@ -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 = 22;
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);