summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-04-04 08:56:34 +0200
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-04-04 08:56:34 +0200
commite66913146492056188f5f4f37c988ebb9413e093 (patch)
treeb5d261a800927aab83f29ce3aee8f3299f93a3c1
parent0a10f3ce45a25bbec3c64ec1eb46c13ed1386cf5 (diff)
downloadpep8-e66913146492056188f5f4f37c988ebb9413e093.tar.gz
Release version 1.5.21.5.2
-rw-r--r--CHANGES.txt6
-rwxr-xr-xpep8.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 7202819..4e302ff 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -2,19 +2,19 @@ Changelog
=========
-1.5.x (unreleased)
+1.5.2 (2014-04-04)
------------------
Changes:
-* Do not allow newline after parameter equal. (Issue #252)
-
* Distribute a universal wheel file.
Bug fixes:
* Report correct line number for E303 with comments. (Issue #60)
+* Do not allow newline after parameter equal. (Issue #252)
+
* Fix line number reported for multi-line strings. (Issue #220)
* Fix false positive E121/E126 with multi-line strings. (Issue #265)
diff --git a/pep8.py b/pep8.py
index 679eb8a..8ed9469 100755
--- a/pep8.py
+++ b/pep8.py
@@ -46,7 +46,7 @@ W warnings
"""
from __future__ import with_statement
-__version__ = '1.5.2a0'
+__version__ = '1.5.2'
import os
import sys