From 39954032d28eb96f720527671e0e4b60399ce34a Mon Sep 17 00:00:00 2001 From: zzz Date: Mon, 22 Aug 2022 10:16:29 -0400 Subject: [PATCH] 1.9.0 --- core/java/src/net/i2p/CoreVersion.java | 4 ++-- history.txt | 2 ++ installer/install.xml | 2 +- installer/install5.xml | 2 +- router/java/src/net/i2p/router/RouterVersion.java | 4 ++-- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 109f5cde18..5ace441d53 100644 --- a/core/java/src/net/i2p/CoreVersion.java +++ b/core/java/src/net/i2p/CoreVersion.java @@ -31,7 +31,7 @@ public class CoreVersion { * Otherwise, the same as PUBLISHED_VERSION. * RouterVersion.FULL_VERSION is suggested for display to the user. */ - public final static String VERSION = "1.8.0"; + public final static String VERSION = "1.9.0"; /** * The version published in the netdb via StatisticsManager. @@ -48,7 +48,7 @@ public class CoreVersion { * * @since 0.9.46 */ - public final static String PUBLISHED_VERSION = "0.9.54"; + public final static String PUBLISHED_VERSION = "0.9.55"; /** * For Vuze. diff --git a/history.txt b/history.txt index 3e66bdbf9a..a5bc956d8f 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +2022-08-22 1.9.0 released + 2022-08-10 zzz * SSU2: Enable for Android, ARM, and 2% of others diff --git a/installer/install.xml b/installer/install.xml index e5fc763aeb..56736931b2 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ i2p - 1.8.0 + 1.9.0 diff --git a/installer/install5.xml b/installer/install5.xml index 2fef21ef25..0c41ffe277 100644 --- a/installer/install5.xml +++ b/installer/install5.xml @@ -10,7 +10,7 @@ i2p - 1.8.0 + 1.9.0 diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index a4b4ca39e5..ed7e15522a 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 = "Git"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 16; + 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);