From 70dfd5155991198e31e3094670e1f6d90a477991 Mon Sep 17 00:00:00 2001 From: zzz Date: Sat, 29 Jun 2024 10:30:41 -0400 Subject: [PATCH] bump -6 --- 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 e03aaeb782..651516dc5b 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,24 @@ +2024-06-29 zzz + * i2psnark: Fix config display of limit for max up bw after restart (Github #75) + +2024-06-27 zzz + * I2CP: Increase % of router bandwidth reported to clients + +2024-06-26 zzz + * Console: Fix typo in Permissions-Policy header + +2024-06-20 zzz + * susimail: Update size limits to match current postman limits + +2024-06-20 zzz + * i2ptunnel: Reduce severity of access filter errors (Gitlab #483) + +2024-06-11 zzz + * Build: Put JspC wrapper in its own jar, used only at build time + +2024-06-10 zzz + * Router: Increase min version for floodfills, tunnels, reseed + 2024-06-04 zzz * Console: Add js refresh on /graphs (Gitlab MR !199) * i2psnark: diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 39dc8c8e3d..68a0185812 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 = 5; + public final static long BUILD = 6; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;