Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Changelog

*[CalVer, YY.month.patch](https://calver.org/)*

24.5.6
======
- Make :ref:`ASYNC913 <async913>` disabled by default, as originally intended.

24.5.5
======
- Add :ref:`ASYNC300 <async300>` create-task-no-reference
Expand Down
2 changes: 1 addition & 1 deletion flake8_async/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@


# CalVer: YY.month.patch, e.g. first release of July 2022 == "22.7.1"
__version__ = "24.5.5"
__version__ = "24.5.6"


# taken from https://github.com/Zac-HD/shed
Expand Down
2 changes: 1 addition & 1 deletion flake8_async/visitors/visitor91x.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def leave_Yield(
leave_Return = leave_Yield # type: ignore


disable_codes_by_default("ASYNC910", "ASYNC911", "ASYNC912")
disable_codes_by_default("ASYNC910", "ASYNC911", "ASYNC912", "ASYNC913")


@error_class_cst
Expand Down