summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'