summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'