Skip to content

Commit

Permalink
Bump version to 0.16.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bwendling committed Jul 13, 2017
1 parent 7b5b976 commit 4aa43d8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@
# All notable changes to this project will be documented in this file.
# This project adheres to [Semantic Versioning](http://semver.org/).

## [0.16.2] 2017-05-19
## [0.16.3] 2017-07-13
### Changed
- Add filename information to a ParseError excetion.
### Fixed
- A token that ends in a continuation marker may have more than one newline in
it, thus changing its "lineno" value. This can happen if multiple
continuation markers are used with no intervening tokens. Adjust the line
number to account for the lines covered by those markers.
- Make sure to split after a comment even for "pseudo" parentheses.

## [0.16.2] 2017-05-19
### Fixed
- Treat expansion operators ('*', '**') in a similar way to function calls to
avoid splitting directly after the opening parenthesis.
- Increase the penalty for splitting after the start of a tuple.
Expand All @@ -18,11 +26,6 @@
- Changed split before the first argument behavior to ignore compound
statements like if and while, but not function declarations.
- Changed coalesce brackets not to line split before closing bracket.
- A token that ends in a continuation marker may have more than one newline in
it, thus changing its "lineno" value. This can happen if multiple
continuation markers are used with no intervening tokens. Adjust the line
number to account for the lines covered by those markers.
- Make sure to split after a comment even for "pseudo" parentheses.

## [0.16.1] 2017-03-22
### Changed
Expand Down
2 changes: 1 addition & 1 deletion yapf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from yapf.yapflib import style
from yapf.yapflib import yapf_api

__version__ = '0.16.2'
__version__ = '0.16.3'


def main(argv):
Expand Down

0 comments on commit 4aa43d8

Please sign in to comment.