From 773a817f7fa300c5561e7d27ff6a67b11c261fc5 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 11 Sep 2017 09:07:45 -0700 Subject: [PATCH] v1.1.0 --- CHANGELOG.md | 18 +++++++++++++++++- setup.py | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 229e2d11..fb362b8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,23 @@ +1.1.0 +===== + +### Features +- pre-commit configuration gains a `fail_fast` option. + - You must be using the v2 configuration format introduced in 1.0.0. + - `fail_fast` defaults to `false`. + - #240 issue by @Lucas-C. + - #616 PR by @asottile. +- pre-commit configuration gains a global `exclude` option. + - This option takes a python regular expression and can be used to exclude + files from _all_ hooks. + - You must be using the v2 configuration format introduced in 1.0.0. + - #281 issue by @asieira. + - #617 PR by @asottile. + 1.0.1 ===== -## Fixes +### Fixes - Fix a regression in the return code of `pre-commit autoupdate` - `pre-commit migrate-config` and `pre-commit autoupdate` return 0 when successful. diff --git a/setup.py b/setup.py index 68c6a4c4..95d2ff00 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( 'hooks.' ), url='https://github.com/pre-commit/pre-commit', - version='1.0.1', + version='1.1.0', author='Anthony Sottile', author_email='asottile@umich.edu',