Skip to content

Commit

Permalink
Release 2.3.0 (#608)
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Mar 14, 2021
1 parent e3f2659 commit 40e6dc2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyflakes/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.2.0'
__version__ = '2.3.0'

0 comments on commit 40e6dc2

Please sign in to comment.