Release 0.3
diff --git a/README.rst b/README.rst
index 935774e..1962597 100644
--- a/README.rst
+++ b/README.rst
@@ -65,8 +65,8 @@
 Changes
 -------
 
-0.2.x - unreleased
-``````````````````
+0.3 - 2014-12-17
+````````````````
 
 * Computation was wrong: the mccabe complexity starts at 1, not 2.
 
diff --git a/mccabe.py b/mccabe.py
index f7c1778..4f3baf0 100644
--- a/mccabe.py
+++ b/mccabe.py
@@ -14,7 +14,7 @@
 except ImportError:   # Python 2.5
     from flake8.util import ast, iter_child_nodes
 
-__version__ = '0.2.2'
+__version__ = '0.3'
 
 
 class ASTVisitor(object):