diff --git a/NEWS.rst b/NEWS.rst index d1a4373f..ae6ebb88 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 e59b17b4..4eb28e38 100644 --- a/pyflakes/__init__.py +++ b/pyflakes/__init__.py @@ -1 +1 @@ -__version__ = '2.5.0' +__version__ = '3.0.0'