#1069: Propagate fix into i2p.i2p from i2p.i2p.tuna.tmp

* Replace SimpleScheduler with SimpleTimer2
 * Bump version number
This commit is contained in:
dev
2015-04-15 16:15:53 +00:00
parent 54dba980b4
commit 037cd78dc7
3 changed files with 6 additions and 3 deletions

View File

@ -18,7 +18,7 @@ public class CoreVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = "0.9.18";
public final static String VERSION = "0.9.19";
/**
* For Vuze.

View File

@ -1,3 +1,6 @@
2015-04-15 tuna
* SimpleScheduler: Deprecated, functionaltiy moved to SimpleTimer2
2015-04-05 zzz
* IRC Server: Better timeout handling reading initial lines (ticket #723)

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 = 18;
public final static long BUILD = 1;
/** 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);