bump -5
Some checks failed
Sync Primary Repository to GitHub Mirror / sync (push) Has been cancelled
Daily Workflow / daily-job (push) Has been cancelled
Daily Workflow / javadoc-latest (push) Has been cancelled
Daily Workflow / build-java7 (push) Has been cancelled
Java CI / build (push) Has been cancelled
Java CI / javadoc-latest (push) Has been cancelled
Java CI / build-java7 (push) Has been cancelled
Dockerhub / docker (push) Has been cancelled
Java with IzPack Snapshot Setup / setup (push) Has been cancelled

This commit is contained in:
zzz
2025-07-04 07:49:03 -04:00
parent a439c86b98
commit 2b0a096794
2 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,18 @@
2025-07-04 zzz
* i2psnark: UDP announce fixes
* SSU: Increase inbound ban time
* Util: Android Java version detection improvements
2025-07-01 zzz
* Streaming: Allow configured max window size higher than default
2025-06-30 zzz
* I2CP: Don't send multiple SetDate messages to sessions with subsessions
2025-06-26 zzz
* i2psnark: UDP announce fixes
* Router: Reduce and document the banlist-forever threshold
2025-06-24 zzz
* Crypto: Add support for MLKEM PQ hybrid ratchet (Proposal 169) (PR 517)

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