From fc026a5e8ad0e17e5fef383d03c328bdac09488a Mon Sep 17 00:00:00 2001 From: Tarek Ziade Date: Wed, 9 Nov 2011 14:43:23 +0100 Subject: [PATCH] prep for 0.9 --- CONTRIBUTORS.txt | 2 ++ README | 15 ++++++++++++++- setup.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 5bf0687..fb6ce8b 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -5,3 +5,5 @@ Contributors: - Tamás Gulácsi - Nicolas Dumazet - Stefan Scherfke +- Chris Adams +- Ben Bass diff --git a/README b/README index 7146992..a9ec902 100644 --- a/README +++ b/README @@ -8,7 +8,7 @@ Flake8 is a wrapper around these tools: - pep8 - 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 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 ======= +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 ---------------- diff --git a/setup.py b/setup.py index 6650573..1a85f74 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ README = open('README').read() setup( name="flake8", license="MIT", - version="0.8", + version="0.9", description="code checking using pep8 and pyflakes", author="Tarek Ziade", author_email="tarek@ziade.org",