From 7c08ee8c925479971aa61be604c7c0f534aeaa47 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sat, 24 Oct 2015 18:39:24 -0500 Subject: [PATCH 1/3] Bump pyflakes cap to 1.1.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index abdb35f..d8b0518 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ setup( url="https://gitlab.com/pycqa/flake8", packages=["flake8", "flake8.tests"], install_requires=[ - "pyflakes >= 0.8.1, < 0.10", + "pyflakes >= 0.8.1, < 1.1", "pep8 >= 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2", "mccabe >= 0.2.1, < 0.4", ], From 63b9a84367c54f1c583b55dcab5a1bb620f69a0e Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sat, 24 Oct 2015 18:39:53 -0500 Subject: [PATCH 2/3] Add a few more items to our gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 2d4ca5e..c968761 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,6 @@ .tox *.egg *.egg-info +build +dist +*.zip From 99bc94edaae3bb2d84f025ebdbb34c99982ebd89 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sat, 24 Oct 2015 20:11:15 -0500 Subject: [PATCH 3/3] Release notes and version bump for v2.5.0 --- CHANGES.rst | 26 ++++++++++++++++++++++++++ flake8/__init__.py | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index b081cb1..785146d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,32 @@ CHANGES ======= +2.5.0 - 2015-10-26 +------------------ + +- **Improvement** Raise cap on PyFlakes for Python 3.5 support + +- **Improvement** Avoid deprecation warnings when loading extensions + (`GitLab#59`_, `GitLab#90`_) + +- **Improvement** Separate logic to enable "off-by-default" extensions + (`GitLab#67`_) + +- **Bug** Properly parse options to setuptools Flake8 command (`GitLab!41`_) + +- **Bug** Fix exceptions when output on stdout is truncated before Flake8 + finishes writing the output (`GitLab#69`_) + +- **Bug** Fix error on OS X where Flake8 can no longer acquire or create new + semaphores (`GitLab#74`_) + +.. _GitLab!41: https://gitlab.com/pycqa/flake8/merge_requests/41 +.. _GitLab#59: https://gitlab.com/pycqa/flake8/issues/59 +.. _GitLab#67: https://gitlab.com/pycqa/flake8/issues/67 +.. _GitLab#69: https://gitlab.com/pycqa/flake8/issues/69 +.. _GitLab#74: https://gitlab.com/pycqa/flake8/issues/74 +.. _GitLab#90: https://gitlab.com/pycqa/flake8/issues/90 + 2.4.1 - 2015-05-18 ------------------ diff --git a/flake8/__init__.py b/flake8/__init__.py index 5cd7abf..e59b17b 100644 --- a/flake8/__init__.py +++ b/flake8/__init__.py @@ -1 +1 @@ -__version__ = '2.4.1' +__version__ = '2.5.0'