summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Stapleton Cordasco <graffatcolmingov@gmail.com>2017-07-27 18:57:29 -0500
committerIan Stapleton Cordasco <graffatcolmingov@gmail.com>2017-07-27 18:57:29 -0500
commit0239f15dcce323357f316a66225b0d4d2308de28 (patch)
treea075dd55837f5d85ff75cb725b6b5e0349f506d0
parent69eaa28da2142c405174ce327e4d2470bbce2e87 (diff)
downloadflake8-3.4.0.tar.gz
Release v3.4.03.4.0
-rw-r--r--docs/source/release-notes/3.4.0.rst16
-rw-r--r--src/flake8/__init__.py2
2 files changed, 16 insertions, 2 deletions
diff --git a/docs/source/release-notes/3.4.0.rst b/docs/source/release-notes/3.4.0.rst
index 8c08160..08ee558 100644
--- a/docs/source/release-notes/3.4.0.rst
+++ b/docs/source/release-notes/3.4.0.rst
@@ -1,4 +1,4 @@
-3.4.0 -- 2017-xx-xx
+3.4.0 -- 2017-07-27
-------------------
You can view the `3.4.0 milestone`_ on GitLab for more details.
@@ -12,6 +12,14 @@ You can view the `3.4.0 milestone`_ on GitLab for more details.
- Filter out empty select and ignore codes, e.g., ``--ignore E123,,E234``.
(See also `GitLab#330`_)
+- Specify dependencies appropriately in ``setup.py`` (See also `Gitlab#341_`)
+
+- Fix bug in parsing ``--quiet`` and ``--verbose`` from config files.
+ (See also `GitLab!193`_)
+
+- Remove unused import of ``os`` in the git hook template (See also
+ `GitLab!194`_)
+
.. all links
.. _3.4.0 milestone:
https://gitlab.com/pycqa/flake8/milestones/18
@@ -23,5 +31,11 @@ You can view the `3.4.0 milestone`_ on GitLab for more details.
https://gitlab.com/pycqa/flake8/issues/329
.. _GitLab#330:
https://gitlab.com/pycqa/flake8/issues/330
+.. _GitLab#341:
+ https://gitlab.com/pycqa/flake8/issues/341
.. merge request links
+.. _GitLab!193:
+ https://gitlab.com/pycqa/flake8/merge_requests/193
+.. _GitLab!194:
+ https://gitlab.com/pycqa/flake8/merge_requests/194
diff --git a/src/flake8/__init__.py b/src/flake8/__init__.py
index e9c5d30..0ee1d99 100644
--- a/src/flake8/__init__.py
+++ b/src/flake8/__init__.py
@@ -27,7 +27,7 @@ LOG.addHandler(NullHandler())
# Clean up after LOG config
del NullHandler
-__version__ = '3.3.0'
+__version__ = '3.4.0'
__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit())