summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Frost <indigo@bitglue.com>2015-06-09 21:51:44 -0400
committerPhil Frost <indigo@bitglue.com>2015-06-09 21:51:44 -0400
commit8f30620876446deb27abe2749d847946556d84ad (patch)
tree54ba038efed255b0efe9b8095529a6d81600a3e4
parentfef7259beb57b38eb2c3e4829a2bbdcf56c0d6b3 (diff)
downloadpyflakes-8f30620876446deb27abe2749d847946556d84ad.tar.gz
Update NEWS.txt with 0.9.0 and 0.9.1 releases0.9.1
-rw-r--r--NEWS.txt15
-rw-r--r--pyflakes/__init__.py2
2 files changed, 14 insertions, 3 deletions
diff --git a/NEWS.txt b/NEWS.txt
index 7e81cf7..c4c6215 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,5 +1,16 @@
-UNRELEASED:
- - Skip the traceback on Control+C and "Broken pipe" signals.
+0.9.1 (2015-06-09):
+ - Update NEWS.txt to include 0.9.0, which had been forgotten.
+
+0.9.0 (2015-05-31):
+ - Exit gracefully, not with a traceback, on SIGINT and SIGPIPE.
+ - Fix incorrect report of undefined name when using lambda expressions in
+ generator expressions.
+ - Don't crash on DOS line endings on Windows and Python 2.6.
+ - Don't report an undefined name if the 'del' which caused a name to become
+ undefined is only conditionally executed.
+ - Properly handle differences in list comprehension scope in Python 3.
+ - Improve handling of edge cases around 'global' defined variables.
+ - Report an error for 'return' outside a function.
0.8.1 (2014-03-30):
- Detect the declared encoding in Python 3.
diff --git a/pyflakes/__init__.py b/pyflakes/__init__.py
index e9de292..601dc04 100644
--- a/pyflakes/__init__.py
+++ b/pyflakes/__init__.py
@@ -1,2 +1,2 @@
-__version__ = '0.9.0'
+__version__ = '0.9.1'