diff --git a/checklist.txt b/checklist.txt
index baea847b956016fbf6089eb3339909e545d62e3b..2e6813b12597c6476fab11a8ad284d9aa740869d 100644
--- a/checklist.txt
+++ b/checklist.txt
@@ -12,6 +12,7 @@ Change revision in:
 	installer/install.xml
 	news.xml
 	router/java/src/net/i2p/router/RouterVersion.java
+		(change to BUILD = 0 and EXTRA = "")
 	core/java/src/net/i2p/CoreVersion.java
 
 Review the complete diff from the last release:
diff --git a/history.txt b/history.txt
index 6e62d88519b33424786c44823ecacd3a94e515d5..796070beb2b48e8789281b6aa84bd7d71feb306d 100644
--- a/history.txt
+++ b/history.txt
@@ -1,3 +1,27 @@
+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 1440f81c074b5860a9c3b62a49546af04a8d5515..16423ea111e2fab20d553dc350058f9ed2de8eb8 100644
--- a/router/java/src/net/i2p/router/RouterVersion.java
+++ b/router/java/src/net/i2p/router/RouterVersion.java
@@ -18,9 +18,9 @@ public class RouterVersion {
     /** deprecated */
     public final static String ID = "Monotone";
     public final static String VERSION = CoreVersion.VERSION;
-    public final static long BUILD = 10;
+    public final static long BUILD = 11;
     /** for example "-test" */
-    public final static String EXTRA = "";
+    public final static String EXTRA = "-rc";
     public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
     public static void main(String args[]) {
         System.out.println("I2P Router version: " + FULL_VERSION);