summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/source/release-notes/3.7.1.rst22
-rw-r--r--docs/source/release-notes/index.rst1
-rw-r--r--src/flake8/__init__.py2
3 files changed, 24 insertions, 1 deletions
diff --git a/docs/source/release-notes/3.7.1.rst b/docs/source/release-notes/3.7.1.rst
new file mode 100644
index 0000000..913c4a9
--- /dev/null
+++ b/docs/source/release-notes/3.7.1.rst
@@ -0,0 +1,22 @@
+3.7.1 -- 2019-01-30
+-------------------
+
+You can view the `3.7.1 milestone`_ on GitLab for more details.
+
+Bugs Fixed
+~~~~~~~~~~
+
+- Fix capitalized filenames in ``per-file-ignores`` setting (See also
+ `GitLab!290`_, `GitLab#488`_)
+
+.. all links
+.. _3.7.1 milestone:
+ https://gitlab.com/pycqa/flake8/milestones/24
+
+.. issue links
+.. _GitLab#488:
+ https://gitlab.com/pycqa/flake8/issues/488
+
+.. merge request links
+.. _GitLab!290:
+ https://gitlab.com/pycqa/flake8/merge_requests/290
diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst
index 7ae6d42..b4030e0 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.1
3.7.0
3.6.0
3.5.0
diff --git a/src/flake8/__init__.py b/src/flake8/__init__.py
index 9162c50..047d416 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.0"
+__version__ = "3.7.1"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)