diff --git a/README.rst b/README.rst index 1962597..eeb3ab5 100644 --- a/README.rst +++ b/README.rst @@ -65,6 +65,14 @@ Links Changes ------- +0.3.1 - 2015-06-14 +`````````````````` + +* Include ``test_mccabe.py`` in releases. + +* Always coerce the ``max_complexity`` value from Flake8's entry-point to an + integer. + 0.3 - 2014-12-17 ```````````````` diff --git a/mccabe.py b/mccabe.py index 6e5cf3d..f5ef5d9 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.3' +__version__ = '0.3.1' class ASTVisitor(object):