summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2022-07-30 13:26:52 -0400
committerGitHub <noreply@github.com>2022-07-30 13:26:52 -0400
commit2a6e36bd43af9829e0818961b60a1e3aab01fafc (patch)
tree9a91b6b6a8994d6f0d3e1fdccb37c5ec1bf400ca
parenta153aeed8df60f4190e6114f77cd254d1493e411 (diff)
downloadpyflakes-2a6e36bd43af9829e0818961b60a1e3aab01fafc.tar.gz
Release 2.5.0 (#720)2.5.0
-rw-r--r--NEWS.rst11
-rw-r--r--pyflakes/__init__.py2
2 files changed, 12 insertions, 1 deletions
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'