Skip to content

Commit 7a637cc

Browse files
committed
New release v1.5.2
1 parent 0736e5d commit 7a637cc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ repos:
1515
additional_dependencies:
1616
- mdformat-toc
1717
- repo: https://github.com/Lucas-C/pre-commit-hooks
18-
rev: v1.5.1
18+
rev: v1.5.2
1919
hooks:
2020
- id: forbid-crlf
2121
- id: remove-crlf
2222
- id: forbid-tabs
2323
exclude: tests/resources/main.*_with_license.cpp
2424
- id: remove-tabs
2525
exclude: tests/resources/main.*_with_license.cpp
26-
- id: chmod
26+
- id: pre_commit_chmod
2727
args: ['644']
2828
exclude: (\.md$|^tests/resources/.*shebang)
2929
- repo: https://github.com/pre-commit/pre-commit-hooks

.pre-commit-hooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
minimum_pre_commit_version: "3.2.0"
3636
- id: chmod
3737
name: Set file permissions
38-
entry: chmod
38+
entry: pre_commit_chmod
3939
language: python
4040
- id: insert-license
4141
name: Insert license in comments

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ into separate repos:
4343

4444
```yaml
4545
- repo: https://github.com/Lucas-C/pre-commit-hooks
46-
rev: v1.5.1
46+
rev: v1.5.2
4747
hooks:
4848
- id: forbid-crlf
4949
- id: remove-crlf

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
name="pre-commit-hooks",
66
description="Some out-of-the-box hooks for pre-commit",
77
url="https://github.com/Lucas-C/pre-commit-hooks",
8-
version="1.5.1",
8+
version="1.5.2",
99
author="Lucas Cimon",
1010
author_email="[email protected]",
1111
platforms="linux",
@@ -25,7 +25,7 @@
2525
],
2626
entry_points={
2727
"console_scripts": [
28-
"chmod = pre_commit_hooks.chmod:main",
28+
"pre_commit_chmod = pre_commit_hooks.chmod:main",
2929
"forbid_crlf = pre_commit_hooks.forbid_crlf:main",
3030
"forbid_tabs = pre_commit_hooks.forbid_tabs:main",
3131
"insert_license = pre_commit_hooks.insert_license:main",

0 commit comments

Comments
 (0)