summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-10-28 10:34:54 -0700
committerAnthony Sottile <asottile@umich.edu>2019-10-28 10:34:54 -0700
commitee2920d775df18481d638c2da084d229d56f95b9 (patch)
treea3c79f4b79159a2df44cb71dc27fa27629616ae0
parent182cdf6c23a711af32b2dbd040dd89808f5b1d18 (diff)
downloadflake8-3.7-maintenance.tar.gz
-rw-r--r--docs/source/release-notes/3.7.9.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.9.rst b/docs/source/release-notes/3.7.9.rst
new file mode 100644
index 0000000..b1a2ce2
--- /dev/null
+++ b/docs/source/release-notes/3.7.9.rst
@@ -0,0 +1,23 @@
+3.7.9 -- 2019-10-28
+-------------------
+
+You can view the `3.7.9 milestone`_ on GitLab for more details.
+
+Bugs Fixed
+~~~~~~~~~~
+
+- Disable multiprocessing when the multiprocessing method is ``spawn`` (such
+ as on macos in python3.8) (See also `GitLab!367`_, `GitLab#587`_)
+
+
+.. all links
+.. _3.7.9 milestone:
+ https://gitlab.com/pycqa/flake8/milestones/33
+
+.. issue links
+.. _GitLab#587:
+ https://gitlab.com/pycqa/flake8/issues/587
+
+.. merge request links
+.. _GitLab!367:
+ https://gitlab.com/pycqa/flake8/merge_requests/367
diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst
index 96aa184..e532fd6 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.9
3.7.8
3.7.7
3.7.6
diff --git a/src/flake8/__init__.py b/src/flake8/__init__.py
index f370ffb..06b3f34 100644
--- a/src/flake8/__init__.py
+++ b/src/flake8/__init__.py
@@ -18,7 +18,7 @@ if False: # `typing.TYPE_CHECKING` was introduced in 3.5.2
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())
-__version__ = "3.7.8"
+__version__ = "3.7.9"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)