From ff0bf5f0f91b69bfd677822e0d26f47e7def86c5 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sun, 24 Jul 2016 20:11:48 -0500 Subject: [PATCH] Update release notes and version string for 3.0 --- docs/source/release-notes/3.0.0.rst | 24 ++++++------------------ src/flake8/__init__.py | 2 +- 2 files changed, 7 insertions(+), 19 deletions(-) diff --git a/docs/source/release-notes/3.0.0.rst b/docs/source/release-notes/3.0.0.rst index 10182f8..d335494 100644 --- a/docs/source/release-notes/3.0.0.rst +++ b/docs/source/release-notes/3.0.0.rst @@ -1,21 +1,5 @@ -3.0.0b2 -- 2016-06-28 ---------------------- - -.. note:: These are only changes since 3.0.0b1. - -- Adjust some logging levels for ``--verbose`` and messages. - -- Running just ``flake8`` will search the current directory like 2.x used to. - -- Some plugins that claim to accept a ``builtins`` parameter will no longer - cause an unhandled exception in |Flake8|. - -- Add python version and platform information back to ``--version`` - -- Parse hyphenated config names from config files (like 2.x used to). - -3.0.0b1 -- 2016-06-25 ---------------------- +3.0.0 -- 2016-07-25 +------------------- - Rewrite our documentation from scratch! (http://flake8.pycqa.org) @@ -59,3 +43,7 @@ multiprocessing - When using ``--count``, the output is no longer written to stderr. + +- AST plugins can either be functions or classes and all plugins can now + register options so long as there are callable attributes named as we + expect. diff --git a/src/flake8/__init__.py b/src/flake8/__init__.py index 25dde0e..8ebfde1 100644 --- a/src/flake8/__init__.py +++ b/src/flake8/__init__.py @@ -27,7 +27,7 @@ LOG.addHandler(NullHandler()) # Clean up after LOG config del NullHandler -__version__ = '3.0.0b2' +__version__ = '3.0.0' __version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit())