Skip to content

Commit

Permalink
Merge pull request #37 from jamescooke/bump-v0.4.0
Browse files Browse the repository at this point in the history
Bump v0.4.0
  • Loading branch information
jamescooke committed Jul 19, 2018
2 parents 670af64 + 13cb33c commit 618189f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ Unreleased_
See also `latest documentation
<https://flake8-aaa.readthedocs.io/en/latest/>`_.

0.4.0_ - 2018/07/17
-------------------

Added
-----

Expand Down Expand Up @@ -55,6 +58,7 @@ Fixed

Initial alpha release.

.. _Unreleased: https://github.com/jamescooke/flake8-aaa/compare/v0.3.0...HEAD
.. _Unreleased: https://github.com/jamescooke/flake8-aaa/compare/v0.4.0...HEAD
.. _0.4.0: https://github.com/jamescooke/flake8-aaa/compare/v0.3.0...v0.4.0
.. _0.3.0: https://github.com/jamescooke/flake8-aaa/compare/v0.2.0...v0.3.0
.. _0.2.0: https://github.com/jamescooke/flake8-aaa/compare/v0.1.0...v0.2.0
11 changes: 5 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@
flake8-aaa
==========

A `flake8 <http://flake8.pycqa.org/en/latest/index.html>`_ plugin for linting
Python tests against the rules of the `Arrange Act Assert pattern
<http://jamescooke.info/arrange-act-assert-pattern-for-python-developers.html>`_
of testing.
Extends `Flake8 <http://flake8.pycqa.org/en/latest/index.html>`_to check Python
tests follow the `Arrange Act Assert pattern
<http://jamescooke.info/arrange-act-assert-pattern-for-python-developers.html>`_.


Installation
Expand All @@ -39,9 +38,9 @@ Check that ``flake8-aaa`` was installed correctly by asking ``flake8`` for its
version signature::

$ flake8 --version
3.5.0 (aaa: 0.3.0, mccabe: 0.6.1, pycodestyle: 2.3.1, pyflakes: 1.6.0) CPython 3.5.2 on Linux
3.5.0 (aaa: 0.4.0, mccabe: 0.6.1, pycodestyle: 2.3.1, pyflakes: 1.6.0) CPython 3.5.2 on Linux

The ``aaa: 0.3.0`` part of that output tells you ``flake8`` found this plugin.
The ``aaa: 0.4.0`` part of that output tells you ``flake8`` found this plugin.

There is more information on invoking ``flake8`` on the `Invoking Flake8
<http://flake8.pycqa.org/en/latest/user/invocation.html>`_ documentation page.
Expand Down
4 changes: 2 additions & 2 deletions flake8_aaa/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

__short_name__ = 'aaa'
__name__ = 'flake8-{}'.format(__short_name__)
__version__ = '0.3.0'
__version__ = '0.4.0'

__author__ = 'James Cooke'
__copyright__ = '2018, {}'.format(__author__)

__description__ = 'Extends Flake8 to check that tests follow the Arrange Act Assert pattern'
__description__ = 'Extends Flake8 to check Python tests follow the Arrange Act Assert pattern'
__email__ = 'github@jamescooke.info'

0 comments on commit 618189f

Please sign in to comment.