Skip to content

Commit

Permalink
Prepare the 1.1.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jparise committed Jul 30, 2017
1 parent fa6ca7e commit 87ab604
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changes
=======

1.1.4 (2017-07-29)
------------------

* Minor code and packaging cleanup.

1.1.3 (2017-07-28)
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions flake8_author.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
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 '.*').
"""

import ast
import re

__author__ = 'Jon Parise'
__version__ = '1.1.3'
__version__ = '1.1.4'


class Checker(object):
Expand Down

0 comments on commit 87ab604

Please sign in to comment.