diff --git a/history.txt b/history.txt
index 9b72871ed7b4d0a8c100704e84d311d9e0236665..d63e260cff722e4fb79c7da6df0c76ed30504c60 100644
--- a/history.txt
+++ b/history.txt
@@ -1,3 +1,11 @@
+2025-02-25 zzz
+ * Console: Move certs page to a debug page tab
+ * Streaming: Prevent AIOOBE when verifying large signed packets
+ * SusiDNS: Add bubble support
+
+2025-02-24 zzz
+ * Console: Improve writing efficiency
+
 2025-02-23 zzz
  * SusiDNS: Reduce memory usage in AddressBean
  * Tests: Fix build
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index ca3640d9dbf455f1e7e8fd00824d62f775903de8..39dc8c8e3db2328c9c0b45217a7391e1d89483e4 100644
--- a/router/java/src/net/i2p/router/RouterVersion.java
+++ b/router/java/src/net/i2p/router/RouterVersion.java
@@ -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;