From 35585ce02de7eebaeb0aac4e092942cfd6df7c4e Mon Sep 17 00:00:00 2001 From: zzz Date: Mon, 18 May 2026 12:11:25 -0400 Subject: [PATCH] bump -8 --- history.txt | 18 ++++++++++++++++++ .../java/src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index 0cca16d24..a8e81aa09 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,21 @@ +2026-05-18 zzz + * SSU2: Peer test result fix as Alice when we never got Charlie's RI + +2026-05-17 zzz + * i2psnark: + - Add check for empty filenames + - Fix check for existing base file when adding via create form + - Use unfiltered base file name if it exists + +2026-05-16 zzz + * Transports: Reduce min downtime to rekey transport keys + +2026-05-15 zzz + * Console: Don't display hide/show news links on /configupdate + * i2psnark: Increase max form keys + * Router: Fix rare NPE at startup in InNetMessagePool + * Susimail: Remove static login nonce + 2026-05-12 zzz * SSU2: Require three consecutive peer tests for IPv6 state changes diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 03d010d83..29f335491 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 = 7; + public final static long BUILD = 8; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;