summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2021-10-06 13:38:45 -0700
committerGitHub <noreply@github.com>2021-10-06 16:38:45 -0400
commit78d885910781301663a956456e89d1743e037ac3 (patch)
treece1d9f59d0ff7913b9934944e05b65bb438d7105
parent13cad915e6b181b2f6a85efc2ead4856b23bccc0 (diff)
downloadpyflakes-78d885910781301663a956456e89d1743e037ac3.tar.gz
Release 2.4.0 (#657)2.4.0
-rw-r--r--NEWS.rst6
-rw-r--r--pyflakes/__init__.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS.rst b/NEWS.rst
index 3151935..892a1d7 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -1,3 +1,9 @@
+2.4.0 (2021-10-06)
+
+- Remove unused tracing code (``traceTree``)
+- Add support for ``match`` statement
+- Detect ``typing`` module attributes when imported with ``import ... as ...``
+
2.3.1 (2021-03-24)
- Fix regression in 2.3.0: type annotations no longer redefine imports
diff --git a/pyflakes/__init__.py b/pyflakes/__init__.py
index 1c4ddd3..ba9b913 100644
--- a/pyflakes/__init__.py
+++ b/pyflakes/__init__.py
@@ -1 +1 @@
-__version__ = '2.3.1'
+__version__ = '2.4.0'