Skip to content

Commit b8af2cc

Browse files
committed
Bump version to 0.8.1
1 parent fc4f786 commit b8af2cc

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

CHANGES.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@ Changelog
33
=========
44

55

6+
0.8.1 (2023-05-31)
7+
==================
8+
9+
New features:
10+
11+
* Drop support for Python 3.7 due to end of life (pr #893)
12+
13+
14+
Bugfixes:
15+
16+
* Add SASL authentication support to `AIOKafkaAdminClient` (issue #889,
17+
pr #890 by @selevit)
18+
19+
20+
Improved Documentation:
21+
22+
* Update `security_protocol` argument docstring (issue #883, pr #884 by
23+
@gabrielmbmb)
24+
* Remove incorrect `await` for `AIOKafkaConsumer.highwater()` (pr #858 by
25+
@yi-jiayu)
26+
27+
628
0.8.0 (2022-11-21)
729
==================
830

CHANGES/889.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

aiokafka/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.8.0' # noqa
1+
__version__ = '0.8.1' # noqa
22

33
from .abc import ConsumerRebalanceListener
44
from .client import AIOKafkaClient

aiokafka/consumer/consumer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def __init__(self, *topics, loop=None,
265265
loop = get_running_loop()
266266
else:
267267
warnings.warn("The loop argument is deprecated since 0.7.1, "
268-
"and scheduled for removal in 0.8.0",
268+
"and scheduled for removal in 0.9.0",
269269
DeprecationWarning, stacklevel=2)
270270

271271
if max_poll_records is not None and (

aiokafka/producer/producer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def __init__(self, *, loop=None, bootstrap_servers='localhost',
206206
loop = get_running_loop()
207207
else:
208208
warnings.warn("The loop argument is deprecated since 0.7.1, "
209-
"and scheduled for removal in 0.8.0",
209+
"and scheduled for removal in 0.9.0",
210210
DeprecationWarning, stacklevel=2)
211211
if loop.get_debug():
212212
self._source_traceback = traceback.extract_stack(sys._getframe(1))

0 commit comments

Comments
 (0)