summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-02-25 08:36:58 -0800
committerAnthony Sottile <asottile@umich.edu>2019-02-25 08:36:58 -0800
commit88caf5ac484f5c09aedc02167c59c66ff0af0068 (patch)
tree59003781a5720b757ab94ae3ee68daa2120fa339
parenta0c9a4240dbcb74811317367663d5ae7f0af173c (diff)
downloadflake8-88caf5ac484f5c09aedc02167c59c66ff0af0068.tar.gz
Release 3.7.73.7.7
-rw-r--r--docs/source/release-notes/3.7.7.rst23
-rw-r--r--docs/source/release-notes/index.rst1
-rw-r--r--src/flake8/__init__.py2
3 files changed, 25 insertions, 1 deletions
diff --git a/docs/source/release-notes/3.7.7.rst b/docs/source/release-notes/3.7.7.rst
new file mode 100644
index 0000000..2928906
--- /dev/null
+++ b/docs/source/release-notes/3.7.7.rst
@@ -0,0 +1,23 @@
+3.7.7 -- 2019-02-25
+-------------------
+
+You can view the `3.7.7 milestone`_ on GitLab for more details.
+
+Bugs Fixed
+~~~~~~~~~~
+
+- Fix crahes in plugins causing ``flake8`` to hang while unpickling errors (See
+ also `GitLab!308`_, `GitLab#505`_)
+
+
+.. all links
+.. _3.7.7 milestone:
+ https://gitlab.com/pycqa/flake8/milestones/30
+
+.. issue links
+.. _GitLab#505:
+ https://gitlab.com/pycqa/flake8/issues/505
+
+.. merge request links
+.. _GitLab!308:
+ https://gitlab.com/pycqa/flake8/merge_requests/308
diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst
index c9041a5..4a206b9 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.7
3.7.6
3.7.5
3.7.4
diff --git a/src/flake8/__init__.py b/src/flake8/__init__.py
index 2394bb8..73ec63a 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.6"
+__version__ = "3.7.7"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)