From 2c64ae48e2b1984a16cf25d215c9f9d21146426d Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Wed, 23 Nov 2022 13:43:38 -0500 Subject: Release 3.0.0 --- NEWS.rst | 6 ++++++ pyflakes/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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' -- cgit v1.2.1