v0.8.0
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index fed900a..be99f71 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: dc50b7f09c9612624c97e7f11fa346937c37f444
+    sha: v0.8.0
     hooks:
     -   id: trailing-whitespace
     -   id: end-of-file-fixer
diff --git a/CHANGELOG b/CHANGELOG
index c489206..f547531 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,10 @@
+0.8.0
+=====
+- Add flag allowing missing keys to `detect-aws-credentials`
+- Handle django default `tests.py` in `name-tests-test`
+- Add `--no-ensure-ascii` option to `pretty-format-json`
+- Add `no-commit-to-branch` hook
+
 0.7.1
 =====
 - Don't false positive on files where trailing whitespace isn't changed.
diff --git a/README.md b/README.md
index 723136d..3b62234 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.7.1  # Use the ref you want to point at
+        sha: v0.8.0  # Use the ref you want to point at
         hooks:
         -   id: trailing-whitespace
         # -   id: ...
diff --git a/setup.py b/setup.py
index 9db61a4..4abb7a2 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.7.1',
+    version='0.8.0',
 
     author='Anthony Sottile',
     author_email='asottile@umich.edu',