Skip to content

Commit

Permalink
Merge pull request #470 from PyCQA/release/v1.7
Browse files Browse the repository at this point in the history
v1.7 release
  • Loading branch information
IanLee1521 committed Jan 12, 2016
2 parents da34675 + a0da509 commit b8088a2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,26 @@ Changelog
=========


1.6.x (unreleased)
1.7.0 (2016-01-12)
------------------

Announcements:

* Repository moved to PyCQA Organization on GitHub:
https://github.com/pycqa/pep8

Changes:

* Reverted the fix in #368, "options passed on command line are only ones
accepted" feature. This has many unintended consequences in pep8 and flake8
and needs to be reworked when I have more time.
* Added support for Python 3.5. (Issue #420 & #459)
* Added support for multi-line config_file option parsing. (Issue #429)
* Improved parameter parsing. (Issues #420 & #456)

Bugs:

* Fixed BytesWarning on Python 3. (Issue #459)

1.6.2 (2015-02-15)
------------------
Expand Down
2 changes: 1 addition & 1 deletion pep8.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
except ImportError:
from ConfigParser import RawConfigParser

__version__ = '1.6.3a0'
__version__ = '1.7.0'

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

0 comments on commit b8088a2

Please sign in to comment.