Skip to content

Commit 2a6e36b

Browse files
authored
Release 2.5.0 (#720)
1 parent a153aee commit 2a6e36b

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

NEWS.rst

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2.5.0 (2022-07-30)
2+
3+
- Drop support for EOL python 2.7 / 3.4 / 3.5
4+
- Ignore ``__all__`` when not directly assigned
5+
- Handle ``TypeAlias`` annotations as aliases (PEP 613)
6+
- Assignment expressions (``:=``) target outer scope in comprehensions
7+
- Add support for new python 3.11 syntax
8+
- Unify output so it is always ``filename:lineno:col: message``
9+
- Properly report ``SyntaxError`` from stdin in python < 3.9
10+
- Fix offsets of ``SyntaxError``s in pypy
11+
112
2.4.0 (2021-10-06)
213
314
- Remove unused tracing code (``traceTree``)

pyflakes/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.4.0'
1+
__version__ = '2.5.0'

0 commit comments

Comments
 (0)