mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-11 23:34:17 +00:00
Start a changelog entry for 3.0.0
This commit is contained in:
parent
e2ef07fe80
commit
29419b0ac3
2 changed files with 24 additions and 0 deletions
23
docs/source/release-notes/3.0.0.rst
Normal file
23
docs/source/release-notes/3.0.0.rst
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
3.0.0 -- Unreleased
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
- Rewrite our documentation from scratch! (http://flake8.pycqa.org)
|
||||||
|
|
||||||
|
- ``--select`` and ``--ignore`` can now both be specified and try to find the
|
||||||
|
most specific rule from each. For example, if you do ``--select E --ignore
|
||||||
|
E123`` then we will report everything that starts with ``E`` except for
|
||||||
|
``E123``. Previously, you would have had to do ``--ignore E123,F,W`` which
|
||||||
|
will also still work, but the former should be far more intuitive.
|
||||||
|
|
||||||
|
- Remove dependence on pep8/pycodestyle for file processing, plugin
|
||||||
|
dispatching, and more. We now control all of this while keeping backwards
|
||||||
|
compatibility.
|
||||||
|
|
||||||
|
- Add entry-point for formatters as well as a base class that new formatters
|
||||||
|
can inherit from. See the documentation for more details.
|
||||||
|
|
||||||
|
- Enhance our usage of optparse for plugin developers by adding new parameters
|
||||||
|
to the ``add_option`` that plugins use to register new options.
|
||||||
|
|
||||||
|
- Update ``--install-hook`` to require the name of version control system hook
|
||||||
|
you wish to install a Flake8.
|
||||||
|
|
@ -6,6 +6,7 @@ All of the release notes that have been recorded for Flake8 are organized here
|
||||||
with the newest releases first.
|
with the newest releases first.
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
3.0.0
|
||||||
2.5.5
|
2.5.5
|
||||||
2.5.4
|
2.5.4
|
||||||
2.5.3
|
2.5.3
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue