From 2b0a096794a18b9986d6b15e15dfdf2d7e2cf5bc Mon Sep 17 00:00:00 2001 From: zzz Date: Fri, 4 Jul 2025 07:49:03 -0400 Subject: [PATCH] bump -5 --- history.txt | 15 +++++++++++++++ router/java/src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index 68bd3dfe3..05485cf39 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,18 @@ +2025-07-04 zzz + * i2psnark: UDP announce fixes + * SSU: Increase inbound ban time + * Util: Android Java version detection improvements + +2025-07-01 zzz + * Streaming: Allow configured max window size higher than default + +2025-06-30 zzz + * I2CP: Don't send multiple SetDate messages to sessions with subsessions + +2025-06-26 zzz + * i2psnark: UDP announce fixes + * Router: Reduce and document the banlist-forever threshold + 2025-06-24 zzz * Crypto: Add support for MLKEM PQ hybrid ratchet (Proposal 169) (PR 517) diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index ca3640d9d..39dc8c8e3 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 = 4; + public final static long BUILD = 5; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;