bump -7. Previous -5 was mistakenly tagged as -6

This commit is contained in:
zzz
2026-03-24 11:22:32 -04:00
parent 03847b08c6
commit fb6d7b15e9
2 changed files with 13 additions and 1 deletions

View File

@@ -1,3 +1,15 @@
2026-03-23 zzz
* Console, eepsite: HTML fixes for Weblate
* UPnP: Fail fast if no local addresses, don't blame on port conflict
2026-03-21 zzz
* Console: Show conn limits on peer status page
* NetDB: Force L cap if very low max tunnels
* SSU2: Set peer test result to firewalled if no peers available to test
2026-03-19 zzz
* Stats: Fix 60s stat getAverage() returning 20% high
2026-03-17 zzz
* Console: Fix classloader issues when starting/installing plugins
* NetDB: Publish D cap if near conn limits

View File

@@ -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 = 5;
public final static long BUILD = 7;
/** for example "-test" */
public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;