diff --git a/CHANGELOG.md b/CHANGELOG.md index 529efae5..1d32b14e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +0.14.0 +====== +- Add a `pre-commit sample-config` command +- Enable ansi color escapes on modern windows +- `autoupdate` now defaults to `--tags-only`, use `--bleeding-edge` for the + old behavior +- Add support for `log_file` in hook configuration to tee hook output to a + file for CI consumption, etc. +- Fix crash with unicode commit messages during merges in python 2. +- Add a `pass_filenames` option to allow disabling automatic filename + positional arguments to hooks. + 0.13.6 ====== - Fix regression in 0.13.5: allow `always_run` and `files` together despite diff --git a/setup.py b/setup.py index 9b6a783a..4f55c210 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( 'hooks.' ), url='https://github.com/pre-commit/pre-commit', - version='0.13.6', + version='0.14.0', author='Anthony Sottile', author_email='asottile@umich.edu',