From 9ae99fa4cbc71734b1d2de299bc0c164111bf3c2 Mon Sep 17 00:00:00 2001 From: zzz <zzz@i2pmail.org> Date: Wed, 5 Mar 2025 12:13:19 -0500 Subject: [PATCH] bump -6-rc --- history.txt | 8 ++++++++ router/java/src/net/i2p/router/RouterVersion.java | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/history.txt b/history.txt index d63e260cff..0a69ff3790 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,11 @@ +2025-03-01 zzz + * Console: Add error page test servlet + * GeoIP 2025-03-01 + * Installer: Fix installation to path with spaces + +2025-02-28 zzz + * Transport: Ban routers with RI format errors if signature verifies + 2025-02-25 zzz * Console: Move certs page to a debug page tab * Streaming: Prevent AIOOBE when verifying large signed packets diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 39dc8c8e3d..4c9572ee69 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 = 5; + public final static String QUALIFIER = "-rc"; + public final static long BUILD = 6; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA; -- GitLab