Skip to content

Commit

Permalink
Merge pull request #124 from jparise/0.9.0
Browse files Browse the repository at this point in the history
Prepare the 0.9.0 release
  • Loading branch information
jparise committed Nov 6, 2019
2 parents b978465 + 32e52e9 commit 09ce70c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Changes
=======

0.9.0 - 2019-11-06
------------------

* Drop support for Python 3.3 and 3.4.

* Support positional-only arguments in Python 3.8.

* Recognize ``abc.ABCMeta`` as a metaclass base type.

* ``ignore-names`` now also applies to the N803 check.

* Handle assigning exceptions to object attributes in Python 2.

0.8.2 - 2019-02-04
------------------

Expand Down
2 changes: 1 addition & 1 deletion src/pep8ext_naming.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
except ImportError:
from flake8.util import ast, iter_child_nodes

__version__ = '0.9.0.dev0'
__version__ = '0.9.0'

PYTHON_VERSION = sys.version_info[:3]
PY2 = PYTHON_VERSION[0] == 2
Expand Down

0 comments on commit 09ce70c

Please sign in to comment.