diff --git a/history.txt b/history.txt index 0a69ff3790b45bc7eb37c7c883cd21334297d8fe..bcbf4a101e39075c63e9c2454ce53d321168242f 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,12 @@ +2025-03-08 zzz + * Tunnels: Fix UOE on timeout of OB client tunnel test + +2025-03-07 zzz + * installer: Add logo to first panel, add progress bar + +2025-03-06 zzz + * i2ptunnel: Change encryption type radio to dropdown, update tooltips + 2025-03-01 zzz * Console: Add error page test servlet * GeoIP 2025-03-01 diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 4c9572ee6980eeb15750dd5b5288ee0355a6568f..ebb07d7f3609573e9ff8ccfa90a4fe3b190b40c4 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 = 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;