summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/source/release-notes/3.7.4.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.4.rst b/docs/source/release-notes/3.7.4.rst
new file mode 100644
index 0000000..bfde209
--- /dev/null
+++ b/docs/source/release-notes/3.7.4.rst
@@ -0,0 +1,23 @@
+3.7.4 -- 2019-01-31
+-------------------
+
+You can view the `3.7.4 milestone`_ on GitLab for more details.
+
+Bugs Fixed
+~~~~~~~~~~
+
+- Fix performance regression with lots of ``per-file-ignores`` and errors
+ (See also `GitLab!299`_, `GitLab#501`_)
+
+
+.. all links
+.. _3.7.4 milestone:
+ https://gitlab.com/pycqa/flake8/milestones/27
+
+.. issue links
+.. _GitLab#501:
+ https://gitlab.com/pycqa/flake8/issues/501
+
+.. merge request links
+.. _GitLab!299:
+ https://gitlab.com/pycqa/flake8/merge_requests/299
diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst
index 0e77453..73793c3 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.4
3.7.3
3.7.2
3.7.1
diff --git a/src/flake8/__init__.py b/src/flake8/__init__.py
index 7cf69ee..3620525 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.3"
+__version__ = "3.7.4"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)