From 577d8a1dfa1345ae13154398a70277ee5e1c6f6b Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sat, 19 Dec 2015 09:01:39 -0800 Subject: [PATCH] v0.7.1 --- CHANGELOG.md | 4 ++++ setup.py | 2 +- tests/runner_test.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82e31263..d5b863cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +0.7.1 +===== +- Support running pre-commit inside submodules + 0.7.0 ===== - Store state about additional_dependencies for rollforward/rollback compatibility diff --git a/setup.py b/setup.py index 4e83aab7..01e71298 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( 'hooks.' ), url='https://github.com/pre-commit/pre-commit', - version='0.7.0', + version='0.7.1', author='Anthony Sottile', author_email='asottile@umich.edu', diff --git a/tests/runner_test.py b/tests/runner_test.py index 7642887c..782e8d53 100644 --- a/tests/runner_test.py +++ b/tests/runner_test.py @@ -88,7 +88,7 @@ def test_pre_commit_path(in_tmpdir): assert runner.pre_commit_path == expected_path -def test_pre_push_path(): +def test_pre_push_path(in_tmpdir): path = os.path.join('foo', 'bar') cmd_output('git', 'init', path) runner = Runner(path)