Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 223f0d4

Browse files
committed
v0.6.0
1 parent a8e43af commit 223f0d4

5 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.6.0
2+
=====
3+
- Filter hooks by stage (commit, push).
4+
15
0.5.5
26
=====
37
- Change permissions a few files

pre_commit/commands/install_uninstall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
'4d9958c90bc262f47553e2c073f14cfe',
2121
'd8ee923c46731b42cd95cc869add4062',
2222
'49fd668cb42069aa1b6048464be5d395',
23-
'79f09a650522a87b0da915d0d983b2de'
23+
'79f09a650522a87b0da915d0d983b2de',
2424
)
2525

2626

pre_commit/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def main(argv=None):
102102
)
103103
run_parser.add_argument(
104104
'--hook-stage', choices=('commit', 'push'), default='commit',
105-
help='The stage during which the hook is fired e.g. commit or push'
105+
help='The stage during which the hook is fired e.g. commit or push',
106106
)
107107
run_mutex_group = run_parser.add_mutually_exclusive_group(required=False)
108108
run_mutex_group.add_argument(

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'hooks.'
1010
),
1111
url='https://github.com/pre-commit/pre-commit',
12-
version='0.5.5',
12+
version='0.6.0',
1313

1414
author='Anthony Sottile',
1515
author_email='[email protected]',

tests/commands/run_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ def test_local_hook_fails(
493493
options={},
494494
expected_outputs=[b''],
495495
expected_ret=1,
496-
stage=False
496+
stage=False,
497497
)
498498

499499

0 commit comments

Comments
 (0)