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)