diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java
index 968bed9d39003a7311d875f11ba496e6423601bd..33be4db7098c9b442b1fc746141e09755a599447 100644
--- a/core/java/src/net/i2p/CoreVersion.java
+++ b/core/java/src/net/i2p/CoreVersion.java
@@ -16,7 +16,7 @@ package net.i2p;
 public class CoreVersion {
     /** deprecated */
     public final static String ID = "Monotone";
-    public final static String VERSION = "0.9.1";
+    public final static String VERSION = "0.9.2";
 
     public static void main(String args[]) {
         System.out.println("I2P Core version: " + VERSION);
diff --git a/core/java/src/net/i2p/client/I2PSession.java b/core/java/src/net/i2p/client/I2PSession.java
index 598ddf1f90f244c9130c7d3455b2ee859c399724..661ea2fff3f935904a3f40b8d0c0209ab205c8e3 100644
--- a/core/java/src/net/i2p/client/I2PSession.java
+++ b/core/java/src/net/i2p/client/I2PSession.java
@@ -278,7 +278,7 @@ public interface I2PSession {
 
     /**
      *  A raw (unsigned) datagram
-     *  @since 0.9.1
+     *  @since 0.9.2
      */
     public static final int PROTO_DATAGRAM_RAW = 18;
 }
diff --git a/history.txt b/history.txt
index 8650baac6d41b64894c83dfefb1c09362b2f3b70..7f6dc4c3cc93d239b499bc4c59a51056407b8206 100644
--- a/history.txt
+++ b/history.txt
@@ -1,3 +1,5 @@
+* 2012-09-21 0.9.2 released
+
 2012-09-15 zzz
  * Build: Fix unpack problem on Java 5: http://forum.i2p/viewtopic.php?t=7334
 
diff --git a/installer/install.xml b/installer/install.xml
index 7e77951a281f32e45b8d19c4bb26582cb6fe1a90..5bdb2e4ad807e3db967633d73c488157f5b10c10 100644
--- a/installer/install.xml
+++ b/installer/install.xml
@@ -4,7 +4,7 @@
 
     <info>
         <appname>i2p</appname>
-        <appversion>0.9.1</appversion>
+        <appversion>0.9.2</appversion>
         <authors>
             <author name="I2P" email="http://forum.i2p2.de/"/>
         </authors>
diff --git a/installer/resources/news.xml b/installer/resources/news.xml
index 3bec527ca2baadb97071b7fe230f91081aedc3bc..342dfab93713fb28f79a33bbb6b057a778a97a3f 100644
--- a/installer/resources/news.xml
+++ b/installer/resources/news.xml
@@ -1,14 +1,16 @@
 <!--
-<i2p.news date="$Date: 2012-07-30 00:00:00 $">
-<i2p.release version="0.9.1" date="2012/07/30" minVersion="0.6" />
+<i2p.news date="$Date: 2012-09-21 00:00:00 $">
+<i2p.release version="0.9.2" date="2012/09/21" minVersion="0.6" />
 -->
 <div lang="en">
-<h3>2012-07-30: <b>0.9.1 <a href="http://www.i2p2.i2p/release-0.9.1.html">Released</a></b></h3>
+<h3>2012-09-21: <b>0.9.2 <a href="http://www.i2p2.i2p/release-0.9.2.html">Released</a></b></h3>
 
 <p>
-0.9.1 includes a large number of bug fixes and improvements in i2psnark, streaming, and elsewhere.
-There are also home page changes, new themes, and translation updates.
-Upgrading is recommended.
+0.9.2 includes extensive low-level changes to improve the performance and efficiency of the router.
+We have updated our UPnP library, to hopefully make UPnP work for more people.
+I2PSnark now has DHT support, but it is not yet enabled by default, as we plan to do more
+testing during the upcoming 0.9.3 development cycle.
+As usual, there's also lots of bug fixes in this release, so updating is recommended. 
 </p><p>
 Say hello to the volunteers on the <a href="irc://127.0.0.1:6668/i2p-help">#i2p-help IRC channel</a>.
 <a href="http://www.i2p2.i2p/getinvolved.html">Get involved</a>,
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index 3c775e75ad2f161a3cd3d0220581c16b99d09b93..a411b009986dc5f1f6384384ad98aeea42885422 100644
--- a/router/java/src/net/i2p/router/RouterVersion.java
+++ b/router/java/src/net/i2p/router/RouterVersion.java
@@ -18,10 +18,10 @@ public class RouterVersion {
     /** deprecated */
     public final static String ID = "Monotone";
     public final static String VERSION = CoreVersion.VERSION;
-    public final static long BUILD = 25;
+    public final static long BUILD = 0;
 
     /** for example "-test" */
-    public final static String EXTRA = "-rc";
+    public final static String EXTRA = "";
     public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
     public static void main(String args[]) {
         System.out.println("I2P Router version: " + FULL_VERSION);