From 881ed2f00255cb247577adad59d4f05122a5f87a Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Thu, 4 Jan 2024 19:27:15 -0500 Subject: [PATCH] Release 3.2.0 --- NEWS.rst | 5 +++++ pyflakes/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index 069e48ed..a0c10c98 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,8 @@ +3.2.0 (2024-01-04) + +- Add support for ``*T`` (TypeVarTuple) and ``**P`` (ParamSpec) in PEP 695 + annotations. + 3.1.0 (2023-07-29) - Drop support for EOL python 3.6 / 3.7 diff --git a/pyflakes/__init__.py b/pyflakes/__init__.py index 7f5601d9..573cf70b 100644 --- a/pyflakes/__init__.py +++ b/pyflakes/__init__.py @@ -1 +1 @@ -__version__ = '3.1.0' +__version__ = '3.2.0'