Skip to content

Commit 9f26423

Browse files
committed
Increment version to 1.2.0
1 parent 2a698f8 commit 9f26423

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

NEWS.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
1.2.0 (2015-05-01):
2+
- Warn against reusing exception names after the except: block on Python 3
3+
- Improve the error messages for imports
4+
5+
1.1.0 (2016-03-01):
6+
- Allow main() to accept arguments.
7+
- Support @ matrix-multiplication operator
8+
- Validate __future__ imports
9+
- Fix doctest scope testing
10+
- Warn for tuple assertions which are always true
11+
- Warn for "import *" not at module level on Python 3
12+
- Catch many more kinds of SyntaxErrors
13+
- Check PEP 498 f-strings
14+
- (and a few more sundry bugfixes)
15+
16+
1.0.0 (2015-09-20):
17+
- Python 3.5 support. async/await statements in particular.
18+
- Fix test_api.py on Windows.
19+
- Eliminate a false UnusedImport warning when the name has been
20+
declared "global"
21+
122
0.9.2 (2015-06-17):
223
- Fix a traceback when a global is defined in one scope, and used in another.
324

pyflakes/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.1.0'
1+
__version__ = '1.2.0'

0 commit comments

Comments
 (0)