From 2bf04648c3fdbb4dca5fdfd9c71d3accfb3aca58 Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 12 May 2026 11:43:42 -0400 Subject: [PATCH] bump -7 --- history.txt | 21 +++++++++++++++++++ .../src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index ffe4dfdcf..0cca16d24 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,24 @@ +2026-05-12 zzz + * SSU2: Require three consecutive peer tests for IPv6 state changes + +2026-05-11 zzz + * SSU2: Require two peers from different /16s to change address + +2026-05-10 zzz + * I2NP: Add missing length checks in readMessage() methods + * Util: More constant-time comparisons + +2026-05-09 zzz + * i2ptunnel: Refactor list page forms + +2026-05-08 zzz + * SSU2: Resurrect hole punch throttling as Charlie + * Util: Use constant-time comparison in various password checkers + +2026-05-07 zzz + * i2psnark, i2ptunnel: Refactor nonces + * Transport: Disable SSU bid adjustment for new routers as of next release + 2026-05-06 zzz * Console: - Validate Origin header diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 68a018581..03d010d83 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 = 6; + public final static long BUILD = 7; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;