This commit is contained in:
zzz
2012-09-21 14:24:53 +00:00
parent ee66747def
commit f16e83f21b
6 changed files with 15 additions and 11 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.1";
public final static String VERSION = "0.9.2";
public static void main(String args[]) {
System.out.println("I2P Core version: " + VERSION);

View File

@ -278,7 +278,7 @@ public interface I2PSession {
/**
* A raw (unsigned) datagram
* @since 0.9.1
* @since 0.9.2
*/
public static final int PROTO_DATAGRAM_RAW = 18;
}

View File

@ -1,3 +1,5 @@
* 2012-09-21 0.9.2 released
2012-09-15 zzz
* Build: Fix unpack problem on Java 5: http://forum.i2p/viewtopic.php?t=7334

View File

@ -4,7 +4,7 @@
<info>
<appname>i2p</appname>
<appversion>0.9.1</appversion>
<appversion>0.9.2</appversion>
<authors>
<author name="I2P" email="http://forum.i2p2.de/"/>
</authors>

View File

@ -1,14 +1,16 @@
<!--
<i2p.news date="$Date: 2012-07-30 00:00:00 $">
<i2p.release version="0.9.1" date="2012/07/30" minVersion="0.6" />
<i2p.news date="$Date: 2012-09-21 00:00:00 $">
<i2p.release version="0.9.2" date="2012/09/21" minVersion="0.6" />
-->
<div lang="en">
<h3>2012-07-30: <b>0.9.1 <a href="http://www.i2p2.i2p/release-0.9.1.html">Released</a></b></h3>
<h3>2012-09-21: <b>0.9.2 <a href="http://www.i2p2.i2p/release-0.9.2.html">Released</a></b></h3>
<p>
0.9.1 includes a large number of bug fixes and improvements in i2psnark, streaming, and elsewhere.
There are also home page changes, new themes, and translation updates.
Upgrading is recommended.
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.
</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 = 25;
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);