From ccb8483766065dead6b1f0af4c6b2e9ce13e05f9 Mon Sep 17 00:00:00 2001 From: zzz Date: Sat, 15 Sep 2012 13:12:00 +0000 Subject: [PATCH] * Build: Fix unpack problem on Java 5: http://forum.i2p/viewtopic.php?t=7334 --- build.xml | 8 ++++++-- history.txt | 3 +++ router/java/src/net/i2p/router/RouterVersion.java | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/build.xml b/build.xml index d0555659a..c819e242c 100644 --- a/build.xml +++ b/build.xml @@ -981,18 +981,22 @@ + - + - + + diff --git a/history.txt b/history.txt index ca66e959e..8650baac6 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,6 @@ +2012-09-15 zzz + * Build: Fix unpack problem on Java 5: http://forum.i2p/viewtopic.php?t=7334 + 2012-09-14 zzz * SSU: Fix shutdown NPE (ticket #709) diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index f7d70ed0a..3c775e75a 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,7 +18,7 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 24; + public final static long BUILD = 25; /** for example "-test" */ public final static String EXTRA = "-rc";