Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xZise committed May 30, 2016
1 parent ff70117 commit 54321ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
__future__ import checker
=========================

.. image:: https://secure.travis-ci.org/xZise/flake8-future-import.png?branch=master
.. image:: https://secure.travis-ci.org/xZise/flake8-future-import.png?branch=0.4.0
:alt: Build Status
:target: https://travis-ci.org/xZise/flake8-future-import

.. image:: http://codecov.io/github/xZise/flake8-future-import/coverage.svg?branch=master
.. image:: https://codecov.io/gh/xZise/flake8-future-import/branch/master/graph/badge.svg
:alt: Coverage Status
:target: http://codecov.io/github/xZise/flake8-future-import?branch=master
:target: https://codecov.io/gh/xZise/flake8-future-import

.. image:: https://badge.fury.io/py/flake8-future-import.svg
:alt: Pypi Entry
Expand Down Expand Up @@ -43,7 +43,7 @@ When both ``flake8 2.0`` and ``flake8-future-imports`` are installed, the plugin
is available in ``flake8``::

$ flake8 --version
2.0 (pep8: 1.4.2, flake8-future-imports: 0.3.dev0, pyflakes: 0.6.1)
2.0 (pep8: 1.4.2, flake8-future-imports: 0.4.0, pyflakes: 0.6.1)

By default the plugin will check for all the future imports but with
``--ignore`` it's possible to define which imports from ``__future__`` are
Expand Down Expand Up @@ -132,7 +132,7 @@ cannot skip reporting those imports.
Changes
-------

0.4.0 - 2015-10-19
0.4.0 - 2016-05-30
``````````````````
* Add two older ``future`` imports
* Issue an error when a future import does not exist
Expand Down
2 changes: 1 addition & 1 deletion flake8_future_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from ast import NodeVisitor, Str, Module, parse

__version__ = '0.4.0.dev1'
__version__ = '0.4.0'


class FutureImportVisitor(NodeVisitor):
Expand Down

0 comments on commit 54321ca

Please sign in to comment.