From 71992b2af6c22cc83de088d23939b0860c633af9 Mon Sep 17 00:00:00 2001 From: zzz Date: Sun, 5 May 2024 09:00:50 -0400 Subject: [PATCH] bump -4 --- history.txt | 17 +++++++++++++++++ .../java/src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index cdf4feee4..9d5657c35 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,20 @@ +2024-05-05 zzz + * NetDB: Various fixes and adjustments + * Pull translations from Transifex + +2024-05-03 zzz + * NetDB: Don't lookup RI if temp. banlisted + * Router: Add Tor blocklist + * Tunnels: OBEP distributor: Check and charge RI lookup bandwidth + +2024-05-02 zzz + * Profiles: Fixes for firstHeardAbout and/or lastHeardAbout being zero + +2024-05-01 zzz + * NetDB: + - Limit number of DSRM entries to follow + - Deny old ANY lookup type to non-ff + 2024-04-27 zzz * Sybil: Disable IP checks for now diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index f2016528b..ca3640d9d 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;