From b861a260d21ed73e2bf026b77a14f058d49a2130 Mon Sep 17 00:00:00 2001 From: Denis Otkidach Date: Sat, 29 Jun 2024 16:08:35 +0300 Subject: [PATCH] Prepare 0.11.0 release --- CHANGES.rst | 5 +++-- aiokafka/__init__.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index e4df59ca..d3e769ca 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,8 +2,8 @@ Changelog ========= -Unreleased -========== +0.11.0 (2024-06-29) +=================== New features: @@ -19,6 +19,7 @@ Bugfixes: (pr #978 by @alm0ra) * Fix `NotControllerError` in `AIOKafkaAdminClient.create_topics` and other methods (issue #995) +* Fix unintended cancellation of fetcher task (issue #983, pr #1007 by @apmorton) 0.10.0 (2023-12-15) diff --git a/aiokafka/__init__.py b/aiokafka/__init__.py index 417a2c89..5cfb4cb1 100644 --- a/aiokafka/__init__.py +++ b/aiokafka/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.10.0" +__version__ = "0.11.0" from .abc import ConsumerRebalanceListener from .client import AIOKafkaClient