From e617059b301f289316053130e4a95eeeac241845 Mon Sep 17 00:00:00 2001 From: zzz Date: Wed, 18 Dec 2024 13:02:28 -0500 Subject: [PATCH] bump -4 --- history.txt | 3 +++ router/java/src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index 169431ccae..fae318a697 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,6 @@ +2024-12-18 zzz + * NetDB: Aggressive expire for leasesets when over limits + 2024-11-29 zzz * Build: Prep for izpack 5.2.3 (Github #86) * Transport: Better message on UPnP tab when enabled but fails to start (Github #84) diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index f2016528bf..ca3640d9db 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 = 3; + public final static long BUILD = 4; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;