Skip to content

Commit e91ef6e

Browse files
committed
Add release notes for 2.5.0
Bump version to 2.5.0 for release
1 parent 99a4eb8 commit e91ef6e

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

CHANGES.txt

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,29 @@
11
Changelog
22
=========
33

4-
UNRELEASED / 3.0.0
4+
2.5.0 (2019-01-29)
55
------------------
66

7+
New checks:
8+
9+
* E117: Over-indented code blocks
10+
* W505: Maximum doc-string length only when configured with --max-doc-length
11+
712
Changes:
813

914
* Remove support for EOL Python 2.6 and 3.3. PR #720.
1015
* Add E117 error for over-indented code blocks.
16+
* Allow W605 to be silenced by `# noqa` and fix the position reported by W605
17+
* Allow users to omit blank lines around one-liner definitions of classes and
18+
functions
19+
* Include the function return annotation (``->``) as requiring surrounding
20+
whitespace only on Python 3
21+
* Verify that only names can follow ``await``. Previously we allowed numbers
22+
and strings.
23+
* Add support for Python 3.7
24+
* Fix detection of annotated argument defaults for E252
25+
* Cprrect the position reported by W504
26+
1127

1228
2.4.0 (2018-04-10)
1329
------------------

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.4.0'
81+
__version__ = '2.5.0'
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)