summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt5
-rwxr-xr-xpep8.py2
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 1c3f0e8..af8970d 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -2,7 +2,7 @@ Changelog
=========
-1.2 (UNRELEASED)
+1.2 (2012-06-01)
----------------
* Add E121 through E128 for continuation line indentation. These
@@ -19,6 +19,9 @@ Changelog
* Fix E901 when printing source with ``--show-source``.
+* Report all errors for each checker, instead of reporting only the
+ first occurence for each line.
+
* Option ``--show-pep8`` implies ``--first``.
diff --git a/pep8.py b/pep8.py
index f2159d8..5f19c4f 100755
--- a/pep8.py
+++ b/pep8.py
@@ -93,7 +93,7 @@ for space.
"""
-__version__ = '1.2a1'
+__version__ = '1.2'
import os
import sys