Update release notes for v0.5.3
diff --git a/README.rst b/README.rst
index d9401d1..874b0eb 100644
--- a/README.rst
+++ b/README.rst
@@ -65,6 +65,11 @@
 Changes
 -------
 
+0.5.3 - 2016-12-14
+``````````````````
+
+* Report actual column number of violation instead of the start of the line
+
 0.5.2 - 2016-07-31
 ``````````````````
 
diff --git a/mccabe.py b/mccabe.py
index 60f9963..305fb94 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.2'
+__version__ = '0.5.3'
 
 
 class ASTVisitor(object):