From 5c8ddbe26a4909ed1e9e3ec49d8739769f2dbddd Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 4 Jun 2024 08:50:59 -0400 Subject: [PATCH] bump -5 --- history.txt | 9 +++++++++ router/java/src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index 3bd51189a..e03aaeb78 100644 --- a/history.txt +++ b/history.txt @@ -1,5 +1,14 @@ +2024-06-04 zzz + * Console: Add js refresh on /graphs (Gitlab MR !199) + * i2psnark: + - Fix leaked requests, partial pieces, and temp files (Gitlab MR !203) + - Make PEX more efficient + * Reseed: Increase min version when creating bundles; CLI improvements + * Router: Add synthetic stats for client and expl. build success rate + 2024-06-01 zzz * I2CP: Store local destination in lookup cache (Gitlab #482) + * Router: Don't update rates for full stats when not enabled * Transport: Remove SSU1 code from UDPTransport (Gitlab MR !197) 2024-05-29 zzz diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index ca3640d9d..39dc8c8e3 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 = 4; + public final static long BUILD = 5; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;