diff --git a/CHANGES.rst b/CHANGES.rst index 5388785..9a96603 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ======= +1.1.4 (2017-07-29) +------------------ + +* Minor code and packaging cleanup. + 1.1.3 (2017-07-28) ------------------ diff --git a/README.rst b/README.rst index 683fffb..c65264a 100644 --- a/README.rst +++ b/README.rst @@ -46,7 +46,7 @@ that it has been loaded by inspecting the ``flake8 --version`` string. .. code-block:: sh $ flake8 --version - 3.4.1 (author: 1.1.3, mccabe: 0.6.1, pycodestyle: 2.3.1, pyflakes: 1.5.0) CPython 2.7.13 on Darwin + 3.4.1 (author: 1.1.4, mccabe: 0.6.1, pycodestyle: 2.3.1, pyflakes: 1.5.0) CPython 2.7.13 on Darwin Error Codes diff --git a/flake8_author.py b/flake8_author.py index a98f7a2..b2dfc3e 100644 --- a/flake8_author.py +++ b/flake8_author.py @@ -3,7 +3,7 @@ This extension can be configured to explicitly require or forbid __author__ attributes. By default, __author__ is optional. -If the __author__ attribute is allowed, it's value will be validated against a +If the __author__ attribute is allowed, its value will be validated against a configurable regular expression pattern (defaults to '.*'). """ @@ -11,7 +11,7 @@ import re __author__ = 'Jon Parise' -__version__ = '1.1.3' +__version__ = '1.1.4' class Checker(object):