summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2022-11-23 13:43:38 -0500
committerAnthony Sottile <asottile@umich.edu>2022-11-23 13:43:38 -0500
commit2c64ae48e2b1984a16cf25d215c9f9d21146426d (patch)
tree7b145f2cbf6ddd6d5d26e0a52cf091d41b3312aa
parent66786d45dc0a81c3bc1e205e1d17b16cae8e5a9f (diff)
downloadpyflakes-2c64ae48e2b1984a16cf25d215c9f9d21146426d.tar.gz
Release 3.0.03.0.0
-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'