From 1224bcdd1b0c2845740cb5a1399204d0f30fe859 Mon Sep 17 00:00:00 2001
From: jakkdl
Date: Mon, 18 Nov 2024 13:04:06 +0100
Subject: [PATCH] add changelog & bump version. Fix incorrect changelog
placement.
---
docs/changelog.rst | 8 ++++++--
flake8_async/__init__.py | 2 +-
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/docs/changelog.rst b/docs/changelog.rst
index ccfbaf4..dcfb1a1 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -4,20 +4,24 @@ Changelog
`CalVer, YY.month.patch `_
+24.11.2
+=======
+- Fix crash in ``Visitor91x`` on ``async with a().b():``.
+
24.11.1
=======
- :ref:`ASYNC100 ` now ignores :func:`trio.open_nursery` and :func:`anyio.create_task_group`
as cancellation sources, because they are :ref:`schedule points ` but not
:ref:`cancellation points `.
+- :ref:`ASYNC101 ` and :ref:`ASYNC119 ` are now silenced for decorators in :ref:`transform-async-generator-decorators`.
24.10.2
=======
-- :ref:`ASYNC101 ` and :ref:`ASYNC119 ` are now silenced for decorators in :ref:`transform-async-generator-decorators`
- :ref:`ASYNC102 ` now also warns about ``await()`` inside ``__aexit__``.
24.10.1
=======
-- Add :ref:`ASYNC123 ` bad-exception-group-flattening
+- Add :ref:`ASYNC123 ` bad-exception-group-flattening.
24.9.5
======
diff --git a/flake8_async/__init__.py b/flake8_async/__init__.py
index bbe6c35..8ffe4b0 100644
--- a/flake8_async/__init__.py
+++ b/flake8_async/__init__.py
@@ -38,7 +38,7 @@
# CalVer: YY.month.patch, e.g. first release of July 2022 == "22.7.1"
-__version__ = "24.11.1"
+__version__ = "24.11.2"
# taken from https://github.com/Zac-HD/shed