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;