From 6b81fe9d58731a410564cb58f0fd4d220b7bd288 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Wed, 20 Sep 2017 05:45:39 -0700 Subject: [PATCH] v1.1.2 --- CHANGELOG.md | 9 +++++++++ setup.py | 5 +++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 421f355e..4e6fe248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +1.1.2 +===== + +### Fixes +- pre-commit can successfully install commit-msg hooks + - Due to an oversight, the commit-msg-tmpl was missing from the packaging + - #623 issue by @sobolevn. + - #624 PR by @asottile. + 1.1.1 ===== diff --git a/setup.py b/setup.py index 55116ca9..76a8bd79 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( 'hooks.' ), url='https://github.com/pre-commit/pre-commit', - version='1.1.1', + version='1.1.2', author='Anthony Sottile', author_email='asottile@umich.edu', @@ -29,7 +29,8 @@ setup( packages=find_packages(exclude=('tests*', 'testing*')), package_data={ 'pre_commit': [ - 'resources/*', + 'resources/*-tmpl', + 'resources/*.tar.gz', 'resources/empty_template/*', 'resources/empty_template/.npmignore', ],