Skip to content

Commit 221dea3

Browse files
committed
add changelog, bump version
1 parent 487a587 commit 221dea3

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

docs/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Changelog
44

55
`CalVer, YY.month.patch <https://calver.org/>`_
66

7+
25.4.3
8+
======
9+
- :ref:`ASYNC100 <async100>` can now autofix ``with`` statements with multiple items.
10+
- Fixed a bug where multiple ``with`` items would not interact, leading to ASYNC100 and ASYNC9xx false alarms. https://github.com/python-trio/flake8-async/issues/156
11+
712
25.4.2
813
======
914
- Add :ref:`ASYNC125 <async125>` constant-absolute-deadline

docs/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ adding the following to your ``.pre-commit-config.yaml``:
3333
minimum_pre_commit_version: '2.9.0'
3434
repos:
3535
- repo: https://github.com/python-trio/flake8-async
36-
rev: 25.4.2
36+
rev: 25.4.3
3737
hooks:
3838
- id: flake8-async
3939
# args: ["--enable=ASYNC100,ASYNC112", "--disable=", "--autofix=ASYNC"]

flake8_async/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040
# CalVer: YY.month.patch, e.g. first release of July 2022 == "22.7.1"
41-
__version__ = "25.4.2"
41+
__version__ = "25.4.3"
4242

4343

4444
# taken from https://github.com/Zac-HD/shed

0 commit comments

Comments
 (0)