This commit is contained in:
Anthony Sottile 2017-09-20 05:45:39 -07:00
parent ec42a890f3
commit 6b81fe9d58
2 changed files with 12 additions and 2 deletions

View file

@ -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 1.1.1
===== =====

View file

@ -9,7 +9,7 @@ setup(
'hooks.' 'hooks.'
), ),
url='https://github.com/pre-commit/pre-commit', url='https://github.com/pre-commit/pre-commit',
version='1.1.1', version='1.1.2',
author='Anthony Sottile', author='Anthony Sottile',
author_email='asottile@umich.edu', author_email='asottile@umich.edu',
@ -29,7 +29,8 @@ setup(
packages=find_packages(exclude=('tests*', 'testing*')), packages=find_packages(exclude=('tests*', 'testing*')),
package_data={ package_data={
'pre_commit': [ 'pre_commit': [
'resources/*', 'resources/*-tmpl',
'resources/*.tar.gz',
'resources/empty_template/*', 'resources/empty_template/*',
'resources/empty_template/.npmignore', 'resources/empty_template/.npmignore',
], ],