bump -2-rc

This commit is contained in:
zzz
2024-05-14 13:45:40 -04:00
parent abc3162db5
commit 48899bcade
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2024-05-14 zzz
* i2ptunnel: Fix keepalive bug causing truncation of chunked content
* Pull translations from Transifex
* Router: Update Tor blocklist
2024-05-12 zzz
* Console: Update rrd4j to 3.9.1 preview

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