bump -8-rc

NetDB: RI Publish improvements part 4

Prevent rapid RI publishing at startup when transports update their status
by adding a short delay and check
This commit is contained in:
zzz
2025-01-30 07:11:47 -05:00
parent 0cac210c4d
commit ef5b55a0e4
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2025-01-30 zzz
* NetDB: Debounce RI publishing at startup
2025-01-29 zzz
* NetDB: Reseed update
2025-01-28 zzz
* NetDB: More RI publishing improvements

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