From 2a6e36bd43af9829e0818961b60a1e3aab01fafc Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sat, 30 Jul 2022 13:26:52 -0400 Subject: Release 2.5.0 (#720) --- NEWS.rst | 11 +++++++++++ pyflakes/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index 892a1d7..d1a4373 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,14 @@ +2.5.0 (2022-07-30) + +- Drop support for EOL python 2.7 / 3.4 / 3.5 +- Ignore ``__all__`` when not directly assigned +- Handle ``TypeAlias`` annotations as aliases (PEP 613) +- Assignment expressions (``:=``) target outer scope in comprehensions +- Add support for new python 3.11 syntax +- Unify output so it is always ``filename:lineno:col: message`` +- Properly report ``SyntaxError`` from stdin in python < 3.9 +- Fix offsets of ``SyntaxError``s in pypy + 2.4.0 (2021-10-06) - Remove unused tracing code (``traceTree``) diff --git a/pyflakes/__init__.py b/pyflakes/__init__.py index ba9b913..e59b17b 100644 --- a/pyflakes/__init__.py +++ b/pyflakes/__init__.py @@ -1 +1 @@ -__version__ = '2.4.0' +__version__ = '2.5.0' -- cgit v1.2.1