diff --git a/history.txt b/history.txt index b109c43118..db7f863d3b 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,7 @@ +2023-09-29 zzz + * SAM: Fix accept after soft restart (Gitlab #399) + * Transport: Disable SSU1 by default (Gitlab #427) + 2023-09-27 zzz * Console: Change all DOCTYPEs to standard html (Gitlab #426) * Debian: Change JRE dependency order (Gitlab #443, Debian #1024461) diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index c30bc5a5f4..ac0e1462a0 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 STATUS = ""; - public final static long BUILD = 3; + public final static long BUILD = 4; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + STATUS + BUILD + EXTRA;