From 2a984c37463da9f712cd89c5b4c1c9889d3b200f Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sun, 8 Oct 2017 15:07:48 -0700 Subject: [PATCH] v1.3.0 --- CHANGELOG.md | 16 ++++++++++++++++ setup.py | 3 +-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a6160db..f07185c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +1.3.0 +===== + +### Features +- Add `pre-commit try-repo` commands + - The new `try-repo` takes a repo and will run the hooks configured in + that hook repository. + - An example invocation: + `pre-commit try-repo https://github.com/pre-commit/pre-commit-hooks` + - `pre-commit try-repo` can also take all the same arguments as + `pre-commit run`. + - It can be used to try out a repository without needing to configure it. + - It can also be used to test a hook repository while developing it. + - #589 issue by @sverhagen. + - #633 PR by @asottile. + 1.2.0 ===== diff --git a/setup.py b/setup.py index fbb2397c..0c1e8357 100644 --- a/setup.py +++ b/setup.py @@ -9,12 +9,11 @@ setup( 'hooks.' ), url='https://github.com/pre-commit/pre-commit', - version='1.2.0', + version='1.3.0', author='Anthony Sottile', author_email='asottile@umich.edu', - platforms='linux', classifiers=[ 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2',