This commit is contained in:
zzz
2025-06-21 06:55:08 -04:00
parent d53949f970
commit 8b1a1a8198
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2025-06-21 zzz
* i2psnark: Update UDP announce support (Proposal 160) (PR 504)
2025-06-18 zzz
* I2CP: Add asynch lookup API (PR 511)
2025-06-17 zzz
* Router: Store ident and hash at startup, remove lock (PR 507)
* Transports: Remove unused ElG DH builder (PR 508)

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