From d82e2fe5acce943697ecf1a2cc53853d7b9c0419 Mon Sep 17 00:00:00 2001 From: zzz <zzz@i2pmail.org> Date: Wed, 23 Nov 2022 12:24:29 -0500 Subject: [PATCH] bump -1 --- history.txt | 18 ++++++++++++++++++ .../java/src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/history.txt b/history.txt index 5bb977e86b..2a6cc9cdfb 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,21 @@ +2022-11-23 zzz + * Build: Add debcheckpatch to release targets + * CLI: Sort MTU output by address + * Console: + - Add status and banned tabs to /peers (WIP) + - Change mtn tunnel in help FAQ to git + - Cleanup /debug update and app manager sections + - Dark theme banlist margin fix + - /configlogging fixes + * Crypto: Don't use AccessController in I2PProvider, deprecated as of Java 17 + * i2ptunnel: + - SOCKS 5 tunnel improvements and torsocks support + - Fix log message on config migration + * Router: KeysAndCert compressible padding (Proposal 161, Gitlab MR !66) + * SSU: Remove unneeded queue latency check in UDPSender + * SSU2: Increase Session Created max padding + * SusiDNS: Fix off-by-one in next page last item number + 2022-11-21 2.0.0 (API 0.9.56) released 2022-11-12 zzz diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index ed7e15522a..24c6e3ec7a 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,7 +18,7 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Git"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 0; + public final static long BUILD = 1; /** for example "-test" */ public final static String EXTRA = ""; -- GitLab