This commit is contained in:
dev
2009-04-11 20:35:36 +00:00
parent 0835c05e89
commit d8e502722e
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2009-04-11 welterde
* fixed NPE in NTCP transport
2009-04-11 sponge 2009-04-11 sponge
* i2ptunnel janitorial work and fixes on most locks. * i2ptunnel janitorial work and fixes on most locks.
Some locks still need work, and are marked with LINT in the comment. Some locks still need work, and are marked with LINT in the comment.

View File

@ -17,7 +17,7 @@ import net.i2p.CoreVersion;
public class RouterVersion { public class RouterVersion {
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $"; public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 16; public final static long BUILD = 17;
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID); System.out.println("Router ID: " + RouterVersion.ID);