prep for 0.9

This commit is contained in:
Tarek Ziade 2011-11-09 14:43:23 +01:00
parent 3035b04dce
commit fc026a5e8a
3 changed files with 17 additions and 2 deletions

View file

@ -5,3 +5,5 @@ Contributors:
- Tamás Gulácsi - Tamás Gulácsi
- Nicolas Dumazet - Nicolas Dumazet
- Stefan Scherfke - Stefan Scherfke
- Chris Adams
- Ben Bass

15
README
View file

@ -8,7 +8,7 @@ Flake8 is a wrapper around these tools:
- pep8 - pep8
- Ned's MacCabe script - Ned's MacCabe script
Flake8 runs all tools by launching the single 'flake8' script, but ignores pep8 Flake8 runs all tools by launching the single 'flake8' script, but ignores pep8
and PyFlakes extended options and just uses defaults. It displays the warnings and PyFlakes extended options and just uses defaults. It displays the warnings
in a per-file, merged output. in a per-file, merged output.
@ -49,6 +49,19 @@ If *strict* option is set to **1**, any warning will block the commit. When
CHANGES CHANGES
======= =======
0.9 - 2011-11-09
----------------
- update pep8 version to 0.6.1
- mccabe check: gracefully handle compile failure
0.8 - 2011-02-27
----------------
- fixed hg hook
- discard unexisting files on hook check
0.7 - 2010-02-18 0.7 - 2010-02-18
---------------- ----------------

View file

@ -5,7 +5,7 @@ README = open('README').read()
setup( setup(
name="flake8", name="flake8",
license="MIT", license="MIT",
version="0.8", version="0.9",
description="code checking using pep8 and pyflakes", description="code checking using pep8 and pyflakes",
author="Tarek Ziade", author="Tarek Ziade",
author_email="tarek@ziade.org", author_email="tarek@ziade.org",