From b100d1a823c9c59161eb2a941db71aa8233c89eb Mon Sep 17 00:00:00 2001 From: zzz Date: Wed, 3 Jul 2024 11:38:31 -0400 Subject: [PATCH] bump -7-rc --- history.txt | 13 +++++++++++++ router/java/src/net/i2p/router/RouterVersion.java | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/history.txt b/history.txt index 651516dc5b..af10fdea91 100644 --- a/history.txt +++ b/history.txt @@ -1,5 +1,18 @@ +2024-07-02 zzz + * Jetty: Don't show null exception message in XSSFilter + +2024-07-01 zzz + * Tunnels: Peer selection tweak + +2024-06-30 zzz + * i2psnark: Fix alignment of torrent names (light/vanilla themes) (Github #76) + * Router: Remove ancient test code for variable leasesets + * Tunnels: Remove old check for buggy routers now that MIN_VERSION is higher + * Util: Don't classify ARM servers as slow (Github #77) + 2024-06-29 zzz * i2psnark: Fix config display of limit for max up bw after restart (Github #75) + * Util: Remove discontinued DoH server (Github PR #79) 2024-06-27 zzz * I2CP: Increase % of router bandwidth reported to clients diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 68a0185812..ebb07d7f36 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -19,8 +19,8 @@ public class RouterVersion { public final static String ID = "Git"; 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 String QUALIFIER = "-rc"; + public final static long BUILD = 7; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;