bump -6-rc

This commit is contained in:
zzz
2025-03-05 12:13:19 -05:00
parent ca15671ce8
commit 9ae99fa4cb
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2025-03-01 zzz
* Console: Add error page test servlet
* GeoIP 2025-03-01
* Installer: Fix installation to path with spaces
2025-02-28 zzz
* Transport: Ban routers with RI format errors if signature verifies
2025-02-25 zzz
* Console: Move certs page to a debug page tab
* Streaming: Prevent AIOOBE when verifying large signed packets

View File

@ -19,8 +19,8 @@ public class RouterVersion {
public final static String ID = "Git";
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 String QUALIFIER = "-rc";
public final static long BUILD = 6;
/** for example "-test" */
public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;