Update release notes, dependencies, and version

Closes #32
This commit is contained in:
Ian Cordasco 2015-02-22 12:13:14 -06:00
parent 96817b40b2
commit 7c132d1c33
3 changed files with 24 additions and 4 deletions

View file

@ -1,6 +1,26 @@
CHANGES
=======
2.4.0 - 2015-03-07
------------------
- **Bug** Print filenames when using multiprocessing and ``-q`` option.
(`GitLab#31`_)
- **Bug** Put upper cap on dependencies. The caps for 2.4.0 are:
- ``pep8 < 1.6`` (Related to `GitLab#35`_)
- ``mccabe < 0.4``
- ``pyflakes < 0.9``
See also `GitLab#32`_
.. _GitLab#31: https://gitlab.com/pycqa/flake8/issues/31
.. _GitLab#32: https://gitlab.com/pycqa/flake8/issues/32
.. _GitLab#35: https://gitlab.com/pycqa/flake8/issues/35
2.3.0 - 2015-01-04
------------------

View file

@ -1 +1 @@
__version__ = '2.3.0'
__version__ = '2.4.0.dev0'

View file

@ -49,9 +49,9 @@ setup(
url="https://gitlab.com/pycqa/flake8",
packages=["flake8", "flake8.tests"],
install_requires=[
"pyflakes >= 0.8.1",
"pep8 >= 1.5.7",
"mccabe >= 0.2.1",
"pyflakes >= 0.8.1, < 0.9",
"pep8 >= 1.5.7, < 1.6",
"mccabe >= 0.2.1, < 0.4",
],
entry_points={
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],