diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7a4815f5d..33d5a069e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,24 @@
 `psql` with the `-X` flag to prevent any `.psqlrc` commands from
 accidentally triggering the load of a previous DB version.**
 
+## 0.9.2 (2018-05-04)
+
+**High-level changes**
+* Fixed handling of `DISCARD ALL` command when parallel workers are involved, which sometimes caused the extension to complain it was not preloaded
+* User permission bug fix where users locating TRIGGER permissions in a database could not insert data into a hypertable
+* Fixes for some issues with 32-bit architectures
+
+**Notable commits**
+* [256b394] Fix parsing of GrantRoleStmt
+* [b78953b] Fix datum conversion typo
+* [c7283ef] Fix bug with extension loader when DISCARD ALL is executed
+* [fe20e48] Fix chunk creation with user that lacks TRIGGER permission
+
+**Thanks**
+* @gumshoes, @manigandham, @wallies, & @cjrh for reporting a problem where sometimes the extension would appear to not be preloaded when it actually was
+* @thaxy for reporting a permissions issue when user creating a hypertable lacks TRIGGER permission
+* @bertmelis for reporting some bugs with 32-bit architectures
+
 ## 0.9.1 (2018-03-26)
 
 **High-level changes**
diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt
index 545fd0129..e2fb24e2a 100644
--- a/sql/CMakeLists.txt
+++ b/sql/CMakeLists.txt
@@ -52,7 +52,7 @@ set(MOD_FILES
   updates/0.7.1--0.8.0.sql
   updates/0.8.0--0.9.0.sql
   updates/0.9.0--0.9.1.sql
-  updates/0.9.1--0.10.0-dev.sql
+  updates/0.9.1--0.9.2.sql
 )
 
 set(MODULE_PATHNAME "$libdir/timescaledb-${PROJECT_VERSION_MOD}")
diff --git a/sql/updates/0.9.1--0.10.0-dev.sql b/sql/updates/0.9.1--0.10.0-dev.sql
deleted file mode 100644
index e69de29bb..000000000
diff --git a/version.config b/version.config
index b3379bab3..72647e3e4 100644
--- a/version.config
+++ b/version.config
@@ -1,2 +1,2 @@
-version = 0.10.0-dev
+version = 0.9.2
 update_from_version = 0.9.1