summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-01-30 12:51:49 -0800
committerAnthony Sottile <asottile@umich.edu>2019-01-30 12:51:49 -0800
commit3d1a4265a76831d2821b5d56036db2bbcc44b1c6 (patch)
tree314e577d65bba116856a60087cb538d0a915aae9
parent077b640a86e87719bc8cd751f4f967564e044633 (diff)
downloadflake8-3.7.2.tar.gz
Release 3.7.23.7.2
-rw-r--r--docs/source/release-notes/3.7.2.rst36
-rw-r--r--docs/source/release-notes/index.rst1
-rw-r--r--src/flake8/__init__.py2
3 files changed, 38 insertions, 1 deletions
diff --git a/docs/source/release-notes/3.7.2.rst b/docs/source/release-notes/3.7.2.rst
new file mode 100644
index 0000000..7f2d0cb
--- /dev/null
+++ b/docs/source/release-notes/3.7.2.rst
@@ -0,0 +1,36 @@
+3.7.1 -- 2019-01-30
+-------------------
+
+You can view the `3.7.2 milestone`_ on GitLab for more details.
+
+Bugs Fixed
+~~~~~~~~~~
+
+- Fix broken ``flake8 --diff`` (regressed in 3.7.0) (See also `GitLab!292`_,
+ `GitLab#490`_)
+
+- Fix typo in plugin exception reporting (See also `GitLab!275`_,
+ `GitLab#491`_)
+
+- Fix ``AttributeError`` while attempting to use the legacy api (regressed in
+ 3.7.0) (See also `GitLab!293`_, `GitLab#497`_)
+
+.. all links
+.. _3.7.2 milestone:
+ https://gitlab.com/pycqa/flake8/milestones/25
+
+.. issue links
+.. _GitLab#490:
+ https://gitlab.com/pycqa/flake8/issues/490
+.. _GitLab#491:
+ https://gitlab.com/pycqa/flake8/issues/491
+.. _GitLab#497:
+ https://gitlab.com/pycqa/flake8/issues/497
+
+.. merge request links
+.. _GitLab!292:
+ https://gitlab.com/pycqa/flake8/merge_requests/292
+.. _GitLab!275:
+ https://gitlab.com/pycqa/flake8/merge_requests/275
+.. _GitLab!293:
+ https://gitlab.com/pycqa/flake8/merge_requests/293
diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst
index b4030e0..3cb18e9 100644
--- a/docs/source/release-notes/index.rst
+++ b/docs/source/release-notes/index.rst
@@ -9,6 +9,7 @@ with the newest releases first.
==================
.. toctree::
+ 3.7.2
3.7.1
3.7.0
3.6.0
diff --git a/src/flake8/__init__.py b/src/flake8/__init__.py
index 047d416..8c664fb 100644
--- a/src/flake8/__init__.py
+++ b/src/flake8/__init__.py
@@ -15,7 +15,7 @@ import sys
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())
-__version__ = "3.7.1"
+__version__ = "3.7.2"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)