From 85f758e1833e012b87e84a7ef5d81394a7b15acb Mon Sep 17 00:00:00 2001 From: Denis Otkidach Date: Fri, 15 Dec 2023 07:51:03 +0200 Subject: [PATCH] Prepare 0.10.0 release --- CHANGES.rst | 9 +++++++-- aiokafka/__init__.py | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 0bdd4da8..b4c47383 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,8 +2,8 @@ Changelog ========= -0.10.0.a0 (2023-12-13) -====================== +0.10.0 (2023-12-15) +=================== New features: @@ -13,6 +13,11 @@ New features: .. _KIP-345: https://cwiki.apache.org/confluence/display/KAFKA/KIP-345%3A+Introduce+static+membership+protocol+to+reduce+consumer+rebalances +Bugfixes: + +* Fix extra dependencies (issue #952) + + 0.9.0 (2023-12-04) ================== diff --git a/aiokafka/__init__.py b/aiokafka/__init__.py index f8337128..5e05cb12 100644 --- a/aiokafka/__init__.py +++ b/aiokafka/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.10.0.a0' # noqa +__version__ = '0.10.0' # noqa from .abc import ConsumerRebalanceListener from .client import AIOKafkaClient