Add release notes for 0.6.0
diff --git a/README.rst b/README.rst
index 874b0eb..ad8d6d2 100644
--- a/README.rst
+++ b/README.rst
@@ -65,6 +65,13 @@
 Changes
 -------
 
+0.6.0 - 2017-01-23
+``````````````````
+
+* Add support for Python 3.6
+
+* Fix handling for missing statement types
+
 0.5.3 - 2016-12-14
 ``````````````````
 
diff --git a/mccabe.py b/mccabe.py
index c604c1d..723cb81 100644
--- a/mccabe.py
+++ b/mccabe.py
@@ -16,7 +16,7 @@
 except ImportError:   # Python 2.5
     from flake8.util import ast, iter_child_nodes
 
-__version__ = '0.5.3'
+__version__ = '0.6.0'
 
 
 class ASTVisitor(object):