From dc6b9eed22fa6d374c01b3e557283ff47948510f Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Wed, 8 Nov 2017 12:06:24 -0800 Subject: [PATCH] v1.4.0 --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f07185c7..8005bce6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,36 @@ +1.4.0 +===== + +### Features +- Lazily install repositories. + - When running `pre-commit run `, pre-commit will only install + the necessary repositories. + - #637 issue by @webknjaz. + - #639 PR by @asottile. +- Version defaulting now applies to local hooks as well. + - This extends #556 to apply to local hooks. + - #646 PR by @asottile. +- Add new `repo: meta` hooks. + - `meta` hooks expose some linters of the pre-commit configuration itself. + - `id: check-useless-excludes`: ensures that `exclude` directives actually + apply to *any* file in the repository. + - `id: check-hooks-apply`: ensures that the configured hooks apply to + at least one file in the repository. + - pre-commit/pre-commit-hooks#63 issue by @asottile. + - #405 issue by @asottile. + - #643 PR by @hackedd. + - #653 PR by @asottile. + - #654 PR by @asottile. +- Allow a specific repository to be autoupdated instead of all repositories. + - `pre-commit autoupdate --repo ...` + - #656 issue by @KevinHock. + - #657 PR by @KevinHock. + +### Fixes +- Apply selinux labelling option to docker volumes + - #642 PR by @jimmidyson. + + 1.3.0 ===== diff --git a/setup.py b/setup.py index 0c1e8357..9c7bd0f4 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( 'hooks.' ), url='https://github.com/pre-commit/pre-commit', - version='1.3.0', + version='1.4.0', author='Anthony Sottile', author_email='asottile@umich.edu',