summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS.rst6
-rw-r--r--pyflakes/__init__.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS.rst b/NEWS.rst
index d1a4373..ae6ebb8 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -1,3 +1,9 @@
+3.0.0 (2022-11-23)
+
+- Detect undefined name in variable defined by an annotated assignment
+- Add a new error for names which are annotated but unused
+- Remove handling of python 2.x ``# type:`` comments. Use annotations instead
+
2.5.0 (2022-07-30)
- Drop support for EOL python 2.7 / 3.4 / 3.5
diff --git a/pyflakes/__init__.py b/pyflakes/__init__.py
index e59b17b..4eb28e3 100644
--- a/pyflakes/__init__.py
+++ b/pyflakes/__init__.py
@@ -1 +1 @@
-__version__ = '2.5.0'
+__version__ = '3.0.0'