From a6231992f2b27067955688a7ea314bc12eb44854 Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 2 Jan 2024 08:53:08 -0500 Subject: [PATCH] bump -2 --- history.txt | 21 ++++++++++++++++++- .../src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/history.txt b/history.txt index 50142517b..2d42b31fa 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,22 @@ +2024-01-02 zzz + * Console: News fetch improvements (Gitlab MR !163) + * Router: Enforce max RI size (Gitlab MR !168) + * Susimail: Speed up initial loading (Gitlab MR !162) + * Tunnels: Peer selection adjustments (Gitlab MR !167) + +2023-12-23 zzz + * Susimail: + - Add dropdown on login page for multiple accounts + - Add logo to footer + - Add regex util (WIP) + - Auto-resize compose box + - Extract multipart type and content id (WIP) + - Logging enhancements on file read failures + - Put error messages at the top + - Show size and thumbnail of draft attachments + - Show user name on folder view + * Util: Move SyntheticREDQueue from router to core + 2023-12-22 zzz * Blockfile: Fix bug in unused getNames() * Console: Fix encoding issues in persisted news @@ -219,7 +238,7 @@ 2023-06-28 idk * Cache stores of multihomed leaseSets when stored from multihome peers, and if our local leaseSet is not in the keyspace return the multihome instead - * When updating a leaseSet because recieving it as published always make a + * When updating a leaseSet because receiving it as published always make a complete copy of the leaseSet before merging the flags. * Rate-Limit lookups diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 5edce1f15..66fe5cedb 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 = 1; + public final static long BUILD = 2; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;