v0.9.2
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 8583030..24c1859 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,5 +1,5 @@
 -   repo: https://github.com/pre-commit/pre-commit-hooks
-    sha: v0.9.1
+    sha: v0.9.2
     hooks:
     -   id: trailing-whitespace
     -   id: end-of-file-fixer
diff --git a/CHANGELOG b/CHANGELOG
index 688ef2b..c94ae92 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,12 @@
+0.9.2
+=====
+- Report full python version in `check-ast`.
+- Apply a more strict regular expression for `name-tests-test`
+- Upgrade binding for `git-lfs` for `check-added-large-files`.  The oldest
+  version that is supported is 2.2.1 (2.2.0 will incorrectly refer to all
+  files as "lfs" (false negative) and earlier versions will crash.
+- `debug-statements` now works for non-utf-8 files.
+
 0.9.1
 =====
 - Add `check-executables-have-shebangs` hook.
diff --git a/README.md b/README.md
index 8113736..7b4c486 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@
 Add this to your `.pre-commit-config.yaml`
 
     -   repo: git://github.com/pre-commit/pre-commit-hooks
-        sha: v0.9.1  # Use the ref you want to point at
+        sha: v0.9.2  # Use the ref you want to point at
         hooks:
         -   id: trailing-whitespace
         # -   id: ...
diff --git a/setup.py b/setup.py
index 90ef3c6..4c8c148 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@
     name='pre_commit_hooks',
     description='Some out-of-the-box hooks for pre-commit.',
     url='https://github.com/pre-commit/pre-commit-hooks',
-    version='0.9.1',
+    version='0.9.2',
 
     author='Anthony Sottile',
     author_email='asottile@umich.edu',