summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'