From 8e4beee5367d4b8cf40346222def19f3bc082db6 Mon Sep 17 00:00:00 2001 From: zzz Date: Wed, 30 Apr 2025 09:35:52 -0400 Subject: [PATCH] dev -7 --- history.txt | 19 ++++++++++++++++++- .../src/net/i2p/router/RouterVersion.java | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/history.txt b/history.txt index 0aec7984a..f329e140a 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,20 @@ +2025-04-30 zzz + * I2CP: Datagram 2/3 preliminary support (Proposal163) + * Jetty: Migrate jetty.xml files at startup + to fix id and DTD issues for existing installs + +2025-04-29 zzz + * Console: Logs page improvements + +2025-04-27 zzz + * i2psnark: Remove ElGamal peer support + +2025-04-26 zzz + * i2ptunnel: Canonicalize Host header at the server proxy + +2025-04-25 zzz + * Util: Add ability to force IPv6 for SSLEepGet + 2025-04-24 zzz * Blockfile: Catch unchecked exceptions thrown from value deserializers * CLI: Add -6 flag to force IPv6 reseed test @@ -8,7 +25,7 @@ * i2psnark standalone: Change Ref id to refid in Jetty config file 2025-04-20 zzz - * Build: Change Ref id to refid in Jetty config files + * Build: Change Ref id to refid in Jetty config files (new installs only) * Use Long.compare() in comparators * i2psnark: - Remove outstanding requests from pieces when connection is replaced diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 68a018581..03d010d83 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 = 6; + public final static long BUILD = 7; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;