Skip to content

Commit b8088a2

Browse files
committed
Merge pull request #470 from PyCQA/release/v1.7
v1.7 release
2 parents da34675 + a0da509 commit b8088a2

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGES.txt

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,26 @@ Changelog
22
=========
33

44

5-
1.6.x (unreleased)
5+
1.7.0 (2016-01-12)
66
------------------
77

8+
Announcements:
9+
10+
* Repository moved to PyCQA Organization on GitHub:
11+
https://github.com/pycqa/pep8
12+
813
Changes:
914

1015
* Reverted the fix in #368, "options passed on command line are only ones
1116
accepted" feature. This has many unintended consequences in pep8 and flake8
1217
and needs to be reworked when I have more time.
18+
* Added support for Python 3.5. (Issue #420 & #459)
19+
* Added support for multi-line config_file option parsing. (Issue #429)
20+
* Improved parameter parsing. (Issues #420 & #456)
21+
22+
Bugs:
23+
24+
* Fixed BytesWarning on Python 3. (Issue #459)
1325

1426
1.6.2 (2015-02-15)
1527
------------------

pep8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
except ImportError:
6363
from ConfigParser import RawConfigParser
6464

65-
__version__ = '1.6.3a0'
65+
__version__ = '1.7.0'
6666

6767
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
6868
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704'

0 commit comments

Comments
 (0)