From 0a810249e3120315474efeb17a24ed0398982d63 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Wed, 31 Aug 2016 12:41:38 -0700 Subject: [PATCH] v0.9.0 --- CHANGELOG.md | 9 +++++++++ setup.py | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2494b9d8..2ecf07a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +0.9.0 +===== +- Only consider forward diff in changed files +- Don't run on staged deleted files that still exist +- Autoupdate to tags when available +- Stop supporting python2.6 +- Fix crash with staged files containing unstaged lines which have non-utf8 + bytes and trailing whitespace + 0.8.2 ===== - Fix a crash introduced in 0.8.0 when an executable was not found diff --git a/setup.py b/setup.py index a27034f9..7de2d331 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( 'hooks.' ), url='https://github.com/pre-commit/pre-commit', - version='0.8.2', + version='0.9.0', author='Anthony Sottile', author_email='asottile@umich.edu', @@ -26,7 +26,7 @@ setup( 'Programming Language :: Python :: Implementation :: PyPy', ], - packages=find_packages('.', exclude=('tests*', 'testing*')), + packages=find_packages(exclude=('tests*', 'testing*')), package_data={ 'pre_commit': [ 'resources/hook-tmpl',