Skip to content

Commit 05dc63c

Browse files
committed
2.6.0a1
1 parent 5c60447 commit 05dc63c

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

CHANGES.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
11
Changelog
22
=========
33

4+
2.6.0a1 (2020-04-02)
5+
--------------------
6+
7+
New checks:
8+
9+
* E225: require whitespace around ``and`` ``in`` ``is`` and ``or``. PR #847.
10+
11+
Changes:
12+
13+
* E117: fix indentation using tabs by treating as 8-space indents. PR #837.
14+
* E721: fix false positive with names containg ``istype``. PR #850.
15+
* E741: allow ``l`` as a named argument in a function call. PR #853.
16+
* E302: fix false-negative with decorated functions. PR #859.
17+
* W504: ellipsis (``...``) is no longer treated as a binary operator. PR #875.
18+
* E402: allow ``with``, ``if``, ``elif``, ``else`` to guard imports. PR #834.
19+
* Add support for assignment expressions ``:=`` (PEP 572). PR #879.
20+
* Add support for positional-only arguments ``/`` (PEP 570). PR #872, #918.
21+
* Add support for python 3.8.
22+
* Add support for matrix multiplication operator ``@`` (PEP 465). PR #897.
23+
* Support visual indent for continuation lines for ``with`` / ``assert`` /
24+
``raise``. PR #912.
25+
* E302: allow two blank lines after a block of one-liners. PR #913.
26+
* E302: allow two-and-fewer newlines at the top of the file. PR #919.
27+
28+
429
2.5.0 (2019-01-29)
530
------------------
631

pycodestyle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def lru_cache(maxsize=128): # noqa as it's a fake implementation.
7878
except ImportError:
7979
from ConfigParser import RawConfigParser
8080

81-
__version__ = '2.5.0'
81+
__version__ = '2.6.0a1'
8282

8383
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
8484
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503,W504'

0 commit comments

Comments
 (0)