summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-03-25 18:57:59 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-03-25 18:57:59 +0100
commit5685c9799aa72a461d0b41a5ade2ceeb0341efeb (patch)
treebf748c1581bbcfed7dd41b1a3618830965f4cc6b /CHANGES.txt
parent2a1117c9988532942b81bb60639038e9c9e6bdaa (diff)
downloadpep8-5685c9799aa72a461d0b41a5ade2ceeb0341efeb.tar.gz
Separate Changes and Bug fixes in the changelog
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt12
1 files changed, 10 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index a0ef923..fc79c00 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -5,6 +5,8 @@ Changelog
1.x (unreleased)
----------------
+Changes:
+
* Report E129 instead of E125 for visually indented line with same
indent as next logical line. (Issue #126)
@@ -20,6 +22,8 @@ Changelog
* Report E126 instead of E121 when the continuation line is hanging
with extra indentation, even if indentation is not a multiple of 4.
+Bug fixes:
+
* Allow the checkers to report errors on empty files. (Issue #240)
* Fix ignoring too many checks when ``--select`` is used with codes
@@ -51,6 +55,8 @@ Changelog
1.4.6 (2013-07-02)
------------------
+Changes:
+
* Honor ``# noqa`` for errors E711 and E712. (Issue #180)
* When both a ``tox.ini`` and a ``setup.cfg`` are present in the project
@@ -61,8 +67,6 @@ Changelog
* Compare full path when excluding a file. (Issue #186)
-* Correctly report other E12 errors when E123 is ignored. (Issue #103)
-
* New option ``--hang-closing`` to switch to the alternative style of
closing bracket indentation for hanging indent. Add error E133 for
closing bracket which is missing indentation. (Issue #103)
@@ -70,9 +74,13 @@ Changelog
* Accept both styles of closing bracket indentation for hanging indent.
Do not report error E123 in the default configuration. (Issue #103)
+Bug fixes:
+
* Do not crash when running AST checks and the document contains null bytes.
(Issue #184)
+* Correctly report other E12 errors when E123 is ignored. (Issue #103)
+
* Fix false positive E261/E262 when the file contains a BOM. (Issue #193)
* Fix E701, E702 and E703 not detected sometimes. (Issue #196)