summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS.txt7
-rw-r--r--pyflakes/__init__.py2
2 files changed, 7 insertions, 2 deletions
diff --git a/NEWS.txt b/NEWS.txt
index 3e9b8c1..d7e4a93 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -1,5 +1,10 @@
-UNRELEASED
+2.0.0 (2018-05-20)
+ - Drop support for EOL Python <2.7 and 3.2-3.3
- Check for unused exception binding in `except:` block
+ - Handle string literal type annotations
+ - Ignore redefinitions of `_`, unless originally defined by import
+ - Support `__class__` without `self` in Python 3
+ - Issue an error for `raise NotImplemented(...)`
1.6.0 (2017-08-03)
- Process function scope variable annotations for used names
diff --git a/pyflakes/__init__.py b/pyflakes/__init__.py
index bcd8d54..afced14 100644
--- a/pyflakes/__init__.py
+++ b/pyflakes/__init__.py
@@ -1 +1 @@
-__version__ = '1.6.0'
+__version__ = '2.0.0'