From eb323e778442f5eae1cb6028e83abd8321452f3c Mon Sep 17 00:00:00 2001 From: zzz <zzz@i2pmail.org> Date: Mon, 17 Feb 2025 14:05:41 -0500 Subject: [PATCH] bump -2 --- history.txt | 17 +++++++++++++++++ .../java/src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index 5faa6c1647..6fed5d1d06 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,20 @@ +2025-02-17 zzz + * i2ptunnel: Add .i2p.alt support to HTTP and SOCKS client tunnels (MR 222) + * SusiDNS: Implement sort-by-added-date (MR 231) + +2025-02-14 zzz + * SusiDNS: Navbar CSS fixes/tweaks + +2025-02-11 zzz + * i2ptunnel: Proxy error page improvements + +2025-02-10 zzz + * Router: Unused stats removal + * Transport: More SSU1 code removal + +2025-02-09 zzz + * SusiDNS: Remove null checks in comparator + 2025-02-07 zzz * Build: Check for mismatched version in Izpack config files * Crypto: diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index f3f107529a..14ca763aef 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -20,7 +20,7 @@ public class RouterVersion { public final static String VERSION = CoreVersion.VERSION; /** for example: "beta", "alpha", "rc" */ public final static String QUALIFIER = ""; - public final static long BUILD = 1; + public final static long BUILD = 2; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA; -- GitLab