From 67f15934b54c95c206a07a7640d6229bc2446697 Mon Sep 17 00:00:00 2001 From: zzz Date: Mon, 15 Jan 2024 05:50:54 -0500 Subject: [PATCH] bump -4 --- history.txt | 17 ++++++++++++++--- .../java/src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/history.txt b/history.txt index b8b53c2e4b..b1b036e9b8 100644 --- a/history.txt +++ b/history.txt @@ -1,7 +1,18 @@ +2024-01-15 zzz + * I2CP: Prevent loopback messages to same session (i2pd Github #2005, Gitlab MR !173) + * i2psnark: Bandwidth limiter improvements (Gitlab MR !164) + +2024-01-14 zzz + * Data: Store compressed RI and LS in compressed form (Gitlab MR !171) + * i2ptunnel: + - Add utilities for keepalive (WIP) (Gitlab MR !166) + - Don't send HTML errors on CONNECT sockets (Gitlab MR !175) + * Transport: Remove SSU1 code from PacketHandler (Gitlab MR !174) + 2024-01-10 zzz - * Console: Fix iframe size issues - * Susimail: Add markdown js for plain text content - * SSU2: Delay sending relay tag + * Console: Fix iframe size issues (Gitlab MR !160) + * Susimail: Add markdown js for plain text content (Gitlab MR !161) + * SSU2: Delay sending relay tag (Gitlab MR !169) 2024-01-08 zzz * Transport: Ignore SSU1 enable config diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index d8164f38ce..05ed7cf6d6 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;