From 4beb858d39b65d89a0fbb41ae2b754ffeadcb2f8 Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 10 Sep 2024 14:38:46 -0400 Subject: [PATCH] bump -3 --- history.txt | 16 ++++++++++++++++ .../java/src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index 983a4cb1d..a996f8172 100644 --- a/history.txt +++ b/history.txt @@ -1,5 +1,21 @@ +2024-09-10 zzz + * Console: Refactor netdb search (Gitlab MR #217) + +2024-08-31 zzz + * Console: Consolidate hash comparators (Gitlab MR #214) + +2024-08-23 zzz + * I2CP: Don't include lease about to expire in LS request + +2024-08-19 zzz + * i2psnark: Fix clear messages button (light theme) (Gitlab #479, Github #81) + +2024-08-17 zzz + * Naming: lookup fixes + 2024-08-16 zzz * NetDB, I2CP: Fix tunnels going yellow for several minutes (Gitlab #487) + * SVG: Optimize output for horizontal/vertical segments in paths 2024-08-12 zzz * Util: Add temp dir timestamper to prevent deletion by systemd diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 14ca763ae..f2016528b 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 = 2; + public final static long BUILD = 3; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;