diff --git a/history.txt b/history.txt
index 39af5e178ad46f7cd747e22287c818f6d28ce9e2..cfd1379d08bc7b7db29f49e9e02c33f249184923 100644
--- a/history.txt
+++ b/history.txt
@@ -1,3 +1,15 @@
+2024-04-05 zzz
+ * Susimail: Fix truncation of quoted-printable encoded attachments
+ * Translation updates
+
+2024-04-04 zzz
+ * Susimail:
+   - Only parse mail headers once
+   - Fix initialization of textarea height
+   - Fix 413 error forwarding email with attachments
+   - Fix forwarding email with attachments lacking specified encoding
+   - Fix forwarding html-only email
+
 2024-03-26 zzz
  * NetDB: Store message handling changes
  * Transports: Incoming connection checks
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index 4c793bd1ff5e4d15af363be4b377e79bf8626796..6490b4da0fb66d560ebcc9039a61f62dddbd4271 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 = "rc";
-    public final static long BUILD = 8;
+    public final static long BUILD = 9;
     /** for example "-test" */
     public final static String EXTRA = "";
     public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;