From 40e6dc23a8fc48f814e0c81fdcd936321ab9c023 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sun, 14 Mar 2021 09:32:43 -0700 Subject: [PATCH] Release 2.3.0 (#608) --- NEWS.rst | 12 ++++++++++++ pyflakes/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index 50a39623..3930cbec 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,15 @@ +2.3.0 (2021-03-14) + +- Recognize tuple concatenation in ``__all__`` export definitions +- Better support use of annotation-only assignments when using + ``from __future__ import annotations`` +- Recognize special-case typing for ``Annotated`` +- Fix undefined name ``__qualname__`` in class scope +- Recognize special-cased typing for ``TypeVar`` +- Errors for undefined exports in ``__all__`` are shown in a deterministic order +- Fix false positives in certain typing constructs (``TypeVar``, + ``NamedTuple``, ``TypedDict``, ``cast``) + 2.2.0 (2020-04-08) - Include column information in error messages diff --git a/pyflakes/__init__.py b/pyflakes/__init__.py index 04188a16..82190396 100644 --- a/pyflakes/__init__.py +++ b/pyflakes/__init__.py @@ -1 +1 @@ -__version__ = '2.2.0' +__version__ = '2.3.0'