summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Cordasco <ian.cordasco@rackspace.com>2014-10-09 16:56:01 -0500
committerIan Cordasco <ian.cordasco@rackspace.com>2014-10-09 16:56:01 -0500
commit2cf10d26a31411f192d9100325bd81339616d848 (patch)
treea1642ffd31ab6e3f19bcf0662fb5753f3e39f818
parent7fd24c2983625834f0c1fcdafbb970162fc9036d (diff)
downloadflake8-2.2.4.tar.gz
Release v2.2.42.2.4
-rw-r--r--CHANGES.rst21
-rw-r--r--flake8/__init__.py2
-rw-r--r--setup.py2
3 files changed, 23 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 77dfac3..a29eaf1 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,27 @@
CHANGES
=======
+2.2.4 - 2014-10-09
+------------------
+
+- Fix bugs triggered by turning multiprocessing on by default (again)
+
+ Multiprocessing is forcibly disabled in the following cases:
+
+ - Passing something in via stdin
+
+ - Analyzing a diff
+
+ - Using windows
+
+- Fix --install-hook when there are no config files present for pep8 or
+ flake8.
+
+- Fix how the setuptools command parses excludes in config files
+
+- Fix how the git hook determines which files to analyze (Thanks Chris
+ Buccella!)
+
2.2.3 - 2014-08-25
------------------
diff --git a/flake8/__init__.py b/flake8/__init__.py
index 05633ca..83b6ab0 100644
--- a/flake8/__init__.py
+++ b/flake8/__init__.py
@@ -1 +1 @@
-__version__ = '2.2.3'
+__version__ = '2.2.4'
diff --git a/setup.py b/setup.py
index 43e9b29..33dd763 100644
--- a/setup.py
+++ b/setup.py
@@ -46,7 +46,7 @@ setup(
author_email="tarek@ziade.org",
maintainer="Ian Cordasco",
maintainer_email="graffatcolmingov@gmail.com",
- url="http://bitbucket.org/tarek/flake8",
+ url="https://gitlab.com/pycqa/flake8",
packages=["flake8", "flake8.tests"],
install_requires=[
"pyflakes >= 0.8.1",