Skip to content

Commit 5685c97

Browse files
committed
Separate Changes and Bug fixes in the changelog
1 parent 2a1117c commit 5685c97

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGES.txt

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Changelog
55
1.x (unreleased)
66
----------------
77

8+
Changes:
9+
810
* Report E129 instead of E125 for visually indented line with same
911
indent as next logical line. (Issue #126)
1012

@@ -20,6 +22,8 @@ Changelog
2022
* Report E126 instead of E121 when the continuation line is hanging
2123
with extra indentation, even if indentation is not a multiple of 4.
2224

25+
Bug fixes:
26+
2327
* Allow the checkers to report errors on empty files. (Issue #240)
2428

2529
* Fix ignoring too many checks when ``--select`` is used with codes
@@ -51,6 +55,8 @@ Changelog
5155
1.4.6 (2013-07-02)
5256
------------------
5357

58+
Changes:
59+
5460
* Honor ``# noqa`` for errors E711 and E712. (Issue #180)
5561

5662
* When both a ``tox.ini`` and a ``setup.cfg`` are present in the project
@@ -61,18 +67,20 @@ Changelog
6167

6268
* Compare full path when excluding a file. (Issue #186)
6369

64-
* Correctly report other E12 errors when E123 is ignored. (Issue #103)
65-
6670
* New option ``--hang-closing`` to switch to the alternative style of
6771
closing bracket indentation for hanging indent. Add error E133 for
6872
closing bracket which is missing indentation. (Issue #103)
6973

7074
* Accept both styles of closing bracket indentation for hanging indent.
7175
Do not report error E123 in the default configuration. (Issue #103)
7276

77+
Bug fixes:
78+
7379
* Do not crash when running AST checks and the document contains null bytes.
7480
(Issue #184)
7581

82+
* Correctly report other E12 errors when E123 is ignored. (Issue #103)
83+
7684
* Fix false positive E261/E262 when the file contains a BOM. (Issue #193)
7785

7886
* Fix E701, E702 and E703 not detected sometimes. (Issue #196)

pep8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
700 statements
4646
900 syntax error
4747
"""
48-
__version__ = '1.4.7a0'
48+
__version__ = '1.5.0a0'
4949

5050
import os
5151
import sys

0 commit comments

Comments
 (0)