diff --git a/history.txt b/history.txt index 4c82de21a..169431cca 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,18 @@ +2024-11-29 zzz + * Build: Prep for izpack 5.2.3 (Github #86) + * Transport: Better message on UPnP tab when enabled but fails to start (Github #84) + +2024-11-28 zzz + * Build: Suppress JNI warnings from Java 24 for CLI and i2psnark-standalone + +2024-11-26 zzz + * Console: Move jar dump link from summary bar to debug page tab + * New complete Gan Chinese translation + +2024-11-17 zzz + * Profiles: Extend time to treat E routers as severely congested + * Streaming: Reduce batch delay + 2024-11-14 zzz * Router: Change cap for sym. nat diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 14ca763ae..f2016528b 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 = 2; + public final static long BUILD = 3; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;