summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2021-03-14 09:32:43 -0700
committerGitHub <noreply@github.com>2021-03-14 09:32:43 -0700
commit40e6dc23a8fc48f814e0c81fdcd936321ab9c023 (patch)
treec5404c28656978aa73a75e61e8bcdf61876e97be
parente3f26593eac942435c3e8e114506172678d58ce1 (diff)
downloadpyflakes-40e6dc23a8fc48f814e0c81fdcd936321ab9c023.tar.gz
Release 2.3.0 (#608)2.3.0
-rw-r--r--NEWS.rst12
-rw-r--r--pyflakes/__init__.py2
2 files changed, 13 insertions, 1 deletions
diff --git a/NEWS.rst b/NEWS.rst
index 50a3962..3930cbe 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 04188a1..8219039 100644
--- a/pyflakes/__init__.py
+++ b/pyflakes/__init__.py
@@ -1 +1 @@
-__version__ = '2.2.0'
+__version__ = '2.3.0'