Add changelog entries

This commit is contained in:
Florent Xicluna 2014-03-30 23:04:48 +02:00
parent 04401f8080
commit 876309ad97
3 changed files with 12 additions and 3 deletions

View file

@ -1,6 +1,14 @@
CHANGES
=======
2.1.1 - unreleased
------------------
- Fix Git and Mercurial hooks, issues #88 and #133
- Fix crashes with Python 3.4 by upgrading dependencies
- Fix traceback when running tests with Python 2.6
2.1.0 - 2013-10-26
------------------
@ -14,6 +22,7 @@ CHANGES
- Ignore .tox directories by default
- Flake8 now reports the column number for PyFlakes messages
2.0.0 - 2013-02-23
------------------

View file

@ -1 +1 @@
__version__ = '2.1.0'
__version__ = '2.1.1a1'

View file

@ -36,8 +36,8 @@ setup(
url="http://bitbucket.org/tarek/flake8",
packages=["flake8", "flake8.tests"],
install_requires=[
"pyflakes >= 0.7.3",
"pep8 >= 1.4.6",
"pyflakes >= 0.8.1",
"pep8 >= 1.5.1",
"mccabe >= 0.2.1",
],
entry_points={