Skip to content

Commit 557461b

Browse files
committed
Release 0.11.0
1 parent 8820f14 commit 557461b

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
### Unreleased
44

5+
### 0.11.0
6+
7+
- Remove `default_app_config`.
8+
59
### 0.10.0
610

711
- Add option `skipif` that accepts user function

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = django-extra-checks
3-
version = 0.10.0
3+
version = 0.11.0
44
author = Konstantin Alekseev
55
author_email = [email protected]
66
description = Collection of useful checks for Django Checks Framework

src/extra_checks/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def clean_ignore_types(self) -> set:
214214
)
215215
if result:
216216
warnings.warn(
217-
"ignore_types is deprecated and will be removed in version 0.11.0, replace it with skipif option.",
217+
"ignore_types is deprecated and will be removed in version 0.12.0, replace it with skipif option.",
218218
FutureWarning,
219219
)
220220
return result

src/extra_checks/registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def is_healthy(self) -> bool:
144144
def ignore_checks(self, *args: Union[CheckId, str]) -> Callable[[Any], Any]:
145145
checks = ", ".join([c.value if isinstance(c, CheckId) else c for c in args])
146146
warnings.warn(
147-
f'@ignore_checks is deprecated and will be removed in version 0.11.0, replace it with comment "# extra-checks-disable-next-line {checks}"',
147+
f'@ignore_checks is deprecated and will be removed in version 0.12.0, replace it with comment "# extra-checks-disable-next-line {checks}"',
148148
FutureWarning,
149149
)
150150

0 commit comments

Comments
 (0)