diff --git a/CHANGELOG b/CHANGELOG index 0ad370d4f..49096dc19 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,7 +2,7 @@ # All notable changes to this project will be documented in this file. # This project adheres to [Semantic Versioning](http://semver.org/). -## [0.19.0] UNRELEASED +## [0.19.0] 2017-10-14 ### Added - Added `SPLIT_BEFORE_EXPRESSION_AFTER_OPENING_PAREN` that enforces a split after the opening paren of an expression that's surrounded by parens. diff --git a/HACKING.rst b/HACKING.rst index 097b69522..ee29a111b 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -21,7 +21,9 @@ Releasing a new version * Check it looks OK, install it onto a virtualenv, run tests, run yapf as a tool -* Push to PyPI: python setup.py sdist bdist_wheel upload +* Build release: python setup.py sdist bdist_wheel + +* Push to PyPI: twine upload dist/* * Test in a clean virtualenv that 'pip install yapf' works with the new version diff --git a/yapf/__init__.py b/yapf/__init__.py index 577637688..d80818592 100644 --- a/yapf/__init__.py +++ b/yapf/__init__.py @@ -38,7 +38,7 @@ from yapf.yapflib import style from yapf.yapflib import yapf_api -__version__ = '0.18.0' +__version__ = '0.19.0' def main(argv):