From bdb89581c8ba37ef039e20a2a5cbc88167572d83 Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 5 Dec 2023 12:43:07 -0500 Subject: [PATCH] bump -17 --- history.txt | 19 +++++++++++++++++++ .../src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index 9e8021329..8b8b0216f 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,22 @@ +2023-12-05 zzz + * Build: poupdate-source + * i2ptunnel: Remove dup headers in error pages + +2023-12-02 zzz + * Console: Fix sidebar not immediately showing results of /configsidebar changes + * Susimail: + - Fix binary content-encoding + - Fix incorrect "previous" icons + +2023-12-01 zzz + * Console: + - Clear out "proxy must be running" status after success + - Don't lose tabs in log messages + - Fix HTML errors on /configupdate + - Fix sidebar not immediately showing results of manual update check + - Prevent overflow of sidebar status + * i2psnark: Change js mime type as per RFC 9239 + 2023-11-29 zzz * Build: Handle QUALIFIER * UPnP: diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 94a36bd09..1d9dba4a7 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 = "-rc"; - public final static long BUILD = 16; + public final static long BUILD = 17; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;