diff --git a/history.txt b/history.txt
index 3191791194caf28bf10e6450284d6198b55bda6c..184c2500c096f550c9fa4fb3175a27c913751303 100644
--- a/history.txt
+++ b/history.txt
@@ -1,3 +1,6 @@
+2009-06-05 sponge
+    * Merge and bump to -12
+
 2009-06-05 sponge
     * BOB now cleans up tunnels, although they can take up to 5 minutes to
       disapear. This is due to the fact that the streaming lib doesn't
@@ -7,6 +10,30 @@
       time out. What should happen is the streaming lib should cause an IO
       error to the pending read or write.
 
+2009-06-04 zzz
+    * Console:
+      - Hide some controls if no wrapper on configservice.jsp
+    * I2PTunnel:
+      - Fix bug where delayed-open and close-on-idle tunnels would
+        use a different tunnel pool instead of building their own
+      - Add standby indication to web page
+    * NetDb:
+      - Try to talk directly to a floodfill if we don't know enough,
+        to help integrate more quickly
+      - Change a no-floodfill error to a warn
+    * NetDb Stats:
+      - Average TX and RX bw stats for additional anonymity,
+        effective in next release
+    * Reseed:
+      - Limit to 200 pulled randomly from the full fetched list
+    * Transport:
+      - Increase default bw for new installs to 96/40
+        (was 64/32). This is as high as we can go upstream
+        without making the default class M.
+    * Watchdog:
+      - Allow disabling by property again
+      - Logging tweaks
+
 2009-05-30 zzz
     * Console:
       - config.jsp now cause graceful restart
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index 16423ea111e2fab20d553dc350058f9ed2de8eb8..360707e4c22da3bb5b62f0f0bc05517159d8c3d0 100644
--- a/router/java/src/net/i2p/router/RouterVersion.java
+++ b/router/java/src/net/i2p/router/RouterVersion.java
@@ -18,7 +18,7 @@ public class RouterVersion {
     /** deprecated */
     public final static String ID = "Monotone";
     public final static String VERSION = CoreVersion.VERSION;
-    public final static long BUILD = 11;
+    public final static long BUILD = 12;
     /** for example "-test" */
     public final static String EXTRA = "-rc";
     public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;