Skip to content

Commit 8fe62d1

Browse files
committed
v4.1.0
1 parent 714bb60 commit 8fe62d1

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.0.1
3+
rev: v4.1.0
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
4.1.0 - 2021-12-22
2+
==================
3+
4+
### Features
5+
- `debug-statements`: add `pdbr` debugger.
6+
- #614 PR by @cansarigol.
7+
- `detect-private-key`: add detection for additional key types.
8+
- #658 PR by @ljmf00.
9+
- `check-executables-have-shebangs`: improve messaging on windows.
10+
- #689 PR by @pujitm.
11+
- #686 issue by @jmerdich.
12+
- `check-added-large-files`: support `--enforce-all` with `git-lfs`.
13+
- #674 PR by @amartani.
14+
- #560 issue by @jeremy-coulon.
15+
16+
### Fixes
17+
- `check-case-conflict`: improve performance.
18+
- #626 PR by @guykisel.
19+
- #625 issue by @guykisel.
20+
- `forbid-new-submodules`: fix false-negatives for `pre-push`.
21+
- #619 PR by @m-khvoinitsky.
22+
- #609 issue by @m-khvoinitsky.
23+
- `check-merge-conflict`: fix execution in git worktrees.
24+
- #662 PR by @errsyn.
25+
- #638 issue by @daschuer.
26+
27+
### Misc.
28+
- Normalize case of hook names and descriptions.
29+
- #671 PR by @dennisroche.
30+
- #673 PR by @revolter.
31+
132
4.0.1 - 2021-05-16
233
==================
334

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add this to your `.pre-commit-config.yaml`
1616

1717
```yaml
1818
- repo: https://github.com/pre-commit/pre-commit-hooks
19-
rev: v4.0.1 # Use the ref you want to point at
19+
rev: v4.1.0 # Use the ref you want to point at
2020
hooks:
2121
- id: trailing-whitespace
2222
# - id: ...

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pre_commit_hooks
3-
version = 4.0.1
3+
version = 4.1.0
44
description = Some out-of-the-box hooks for pre-commit.
55
long_description = file: README.md
66
long_description_content_type = text/markdown

0 commit comments

Comments
 (0)