summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Frost <indigo@bitglue.com>2016-05-03 21:15:12 -0400
committerPhil Frost <indigo@bitglue.com>2016-05-03 21:24:26 -0400
commit9f26423dd1b9dc7cb14193d7bd873130247f4027 (patch)
treea691d325c9cce89ebe5c349dc195c828d945c66d
parent2a698f87c02a43d4489e30481e9def14ed4b4431 (diff)
downloadpyflakes-9f26423dd1b9dc7cb14193d7bd873130247f4027.tar.gz
Increment version to 1.2.01.2.0
-rw-r--r--NEWS.txt21
-rw-r--r--pyflakes/__init__.py2
2 files changed, 22 insertions, 1 deletions
diff --git a/NEWS.txt b/NEWS.txt
index f69107a..be06b31 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,3 +1,24 @@
+1.2.0 (2015-05-01):
+ - Warn against reusing exception names after the except: block on Python 3
+ - Improve the error messages for imports
+
+1.1.0 (2016-03-01):
+ - Allow main() to accept arguments.
+ - Support @ matrix-multiplication operator
+ - Validate __future__ imports
+ - Fix doctest scope testing
+ - Warn for tuple assertions which are always true
+ - Warn for "import *" not at module level on Python 3
+ - Catch many more kinds of SyntaxErrors
+ - Check PEP 498 f-strings
+ - (and a few more sundry bugfixes)
+
+1.0.0 (2015-09-20):
+ - Python 3.5 support. async/await statements in particular.
+ - Fix test_api.py on Windows.
+ - Eliminate a false UnusedImport warning when the name has been
+ declared "global"
+
0.9.2 (2015-06-17):
- Fix a traceback when a global is defined in one scope, and used in another.
diff --git a/pyflakes/__init__.py b/pyflakes/__init__.py
index 1a72d32..58d478a 100644
--- a/pyflakes/__init__.py
+++ b/pyflakes/__init__.py
@@ -1 +1 @@
-__version__ = '1.1.0'
+__version__ = '1.2.0'