summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Frost <indigo@bitglue.com>2016-05-05 18:42:33 -0400
committerPhil Frost <indigo@bitglue.com>2016-05-05 18:42:33 -0400
commit29914fc69f300f614e6dde4724cec05dc68a0ea6 (patch)
tree41570fdc0df09aee6614d95661d828de33d974b5
parent45c28a31d3f4c402056433da2a7eb29f565e4344 (diff)
downloadpyflakes-29914fc69f300f614e6dde4724cec05dc68a0ea6.tar.gz
Increment version to 1.2.11.2.1
-rw-r--r--.gitignore3
-rw-r--r--NEWS.txt5
-rw-r--r--pyflakes/__init__.py2
3 files changed, 7 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 364a01f..ce8aaa7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,5 +2,6 @@
*.egg-info
*.pyc
.tox
-dist
+/dist/
+/build/
docs/_build
diff --git a/NEWS.txt b/NEWS.txt
index 2645161..6582dff 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,4 +1,7 @@
-1.2.0 (2016-05-01):
+1.2.1 (2015-05-05):
+ - Fix false RedefinedWhileUnesed for submodule imports
+
+1.2.0 (2016-05-03):
- Warn against reusing exception names after the except: block on Python 3
- Improve the error messages for imports
diff --git a/pyflakes/__init__.py b/pyflakes/__init__.py
index 58d478a..3f262a6 100644
--- a/pyflakes/__init__.py
+++ b/pyflakes/__init__.py
@@ -1 +1 @@
-__version__ = '1.2.0'
+__version__ = '1.2.1'