Skip to content

Commit 66250ba

Browse files
committed
v3.0.0
1 parent 2e9347f commit 66250ba

File tree

4 files changed

+43
-3
lines changed

4 files changed

+43
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
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: v2.5.0
3+
rev: v3.0.0
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
3.0.0 - 2020-05-14
2+
==================
3+
4+
### Features
5+
- `detect-aws-credentials`: skip empty aws keys
6+
- #450 PR by @begoon.
7+
- #449 issue by @begoon.
8+
- `debug-statements`: add detection `wdb` debugger
9+
- #452 PR by @itsdkey.
10+
- #451 issue by @itsdkey.
11+
- `requirements-txt-fixer`: support line continuation for dependencies
12+
- #469 PR by @aniketbhatnagar.
13+
- #465 issue by @aniketbhatnagar.
14+
15+
### Fixes
16+
- `detect-aws-credentials`: fix `UnicodeDecodeError` when running on non-UTF8
17+
files.
18+
- #453 PR by @asottile.
19+
- #393 PR by @a7p
20+
- #346 issue by @rpdelaney.
21+
22+
### Updating
23+
- pre-commit/pre-commit-hooks now requires python3.6.1+
24+
- #447 PR by @asottile.
25+
- #455 PR by @asottile.
26+
- `flake8` / `pyflakes` have been removed, use `flake8` from `pycqa/flake8`
27+
instead:
28+
29+
```yaml
30+
- repo: https://gitlab.com/pycqa/flake8
31+
rev: 3.8.1
32+
hooks:
33+
- id: flake8
34+
```
35+
36+
- #476 PR by @asottile.
37+
- #477 PR by @asottile.
38+
- #344 issue by @asottile.
39+
40+
141
2.5.0 - 2020-02-04
242
==================
343

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add this to your `.pre-commit-config.yaml`
1515

1616
```yaml
1717
- repo: https://github.com/pre-commit/pre-commit-hooks
18-
rev: v2.5.0 # Use the ref you want to point at
18+
rev: v3.0.0 # Use the ref you want to point at
1919
hooks:
2020
- id: trailing-whitespace
2121
# - id: ...

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pre_commit_hooks
3-
version = 2.5.0
3+
version = 3.0.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)