summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2014-06-22 21:20:23 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2014-06-22 21:20:23 -0500
commit54b0030531ae7779092549462225046a9a67f406 (patch)
tree7b29b1c94faec01539cf5ef9f3544a82c736e0ae
parente12caff58aea6b3adfc43aa01f5773aaf6636601 (diff)
downloadflake8-2.2.0.tar.gz
Bump information necessary to release v2.2.02.2.0
-rw-r--r--CHANGES.rst3
-rw-r--r--flake8/__init__.py2
-rw-r--r--setup.py2
3 files changed, 4 insertions, 3 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 2447cc5..c1aa55e 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,11 +1,12 @@
CHANGES
=======
-2.1.1 - unreleased
+2.2.0 - 2014-06-22
------------------
- New option ``doctests`` to run Pyflakes checks on doctests too
- New option ``jobs`` to launch multiple jobs in parallel
+- Turn on using multiple jobs by default using the CPU count
- Add support for ``python -m flake8`` on Python 2.7 and Python 3
- Fix Git and Mercurial hooks: issues #88, #133, #148 and #149
- Fix crashes with Python 3.4 by upgrading dependencies
diff --git a/flake8/__init__.py b/flake8/__init__.py
index e2c8842..04188a1 100644
--- a/flake8/__init__.py
+++ b/flake8/__init__.py
@@ -1 +1 @@
-__version__ = '2.1.1a1'
+__version__ = '2.2.0'
diff --git a/setup.py b/setup.py
index 1ae8435..5ade5bc 100644
--- a/setup.py
+++ b/setup.py
@@ -38,7 +38,7 @@ setup(
packages=["flake8", "flake8.tests"],
install_requires=[
"pyflakes >= 0.8.1",
- "pep8 >= 1.5.1",
+ "pep8 >= 1.5.7",
"mccabe >= 0.2.1",
],
entry_points={