From bccefb949fefc37b2e09e12903e30501832e852b Mon Sep 17 00:00:00 2001 From: zzz Date: Wed, 27 Jan 2016 14:18:08 +0000 Subject: [PATCH] 0.9.24 --- core/java/src/net/i2p/CoreVersion.java | 2 +- history.txt | 6 ++++++ installer/install.xml | 2 +- router/java/src/net/i2p/router/RouterVersion.java | 4 ++-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 8d34f10e0..99a5a6042 100644 --- a/core/java/src/net/i2p/CoreVersion.java +++ b/core/java/src/net/i2p/CoreVersion.java @@ -18,7 +18,7 @@ public class CoreVersion { /** deprecated */ public final static String ID = "Monotone"; - public final static String VERSION = "0.9.23"; + public final static String VERSION = "0.9.24"; /** * For Vuze. diff --git a/history.txt b/history.txt index f7153a703..a6c968fcf 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,9 @@ +* 2016-01-27 0.9.24 released + +2016-01-27 zzz + * SocksHeader: Fix arraycopy argument order + * SSU: Fix minimum version for extended options + 2016-01-20 zzz * SusiDNS: Replace image (ticket #1301) diff --git a/installer/install.xml b/installer/install.xml index 3a5408618..b942533b5 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 0.9.23 + 0.9.24 diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 33006bcb1..a411b0099 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -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 = 27; + 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);