This commit is contained in:
zzz
2025-04-04 08:14:09 -04:00
parent b8dca2f64b
commit a4fe0da2b4
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,15 @@
2025-04-04 zzz
* Crypto: Use /dev/random PRNG by default
2025-03-31 zzz
* Console: Remove redundant LS rendering code
2025-03-30 zzz
* i2psnark:
- Increase thumbnail size
- DTG/Bubble notifications on torrent add failures
* NetDB: Don't store old router versions to disk
2025-03-29 2.8.2 (API 0.9.65) released
2025-03-28 zzz

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