Skip to content

Commit

Permalink
Bump version to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ods committed Oct 28, 2020
1 parent c12a9a0 commit ea0a5c8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
26 changes: 15 additions & 11 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,21 @@
Changelog
=========

628.bugfix
Fix memory leak in kafka consumer when consumer is in idle state not consuming any message
=======
618.feature
added `OAUTHBEARER` as a new `sasl_mechanism`.
=======
667.bugfix
Drop support for Python 3.5
=======
569.bugfix
Support Python 3.8
0.7.0 (2020-10-28)
==================

New features:

* Add support for Python 3.8 and 3.9. (issue #569, pr #669 and #676 by @ods)
* Drop support for Python 3.5. (pr #667 by @ods)
* Add `OAUTHBEARER` as a new `sasl_mechanism`. (issue #618 and pr #630 by @oulydna)


Bugfixes:

* Fix memory leak in kafka consumer when consumer is in idle state not consuming any message.
(issue #628 and pr #629 by @iamsinghrajat)


0.6.0 (2020-05-15)
==================
Expand Down
2 changes: 1 addition & 1 deletion aiokafka/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.6.1.dev0' # noqa
__version__ = '0.7.0' # noqa

from .abc import ConsumerRebalanceListener
from .client import AIOKafkaClient
Expand Down
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async def test_init_with_list(self):
client = AIOKafkaClient(bootstrap_servers=[
'127.0.0.1:9092', '127.0.0.2:9092', '127.0.0.3:9092'])
self.assertEqual(
'<AIOKafkaClient client_id=aiokafka-0.6.1.dev0>',
'<AIOKafkaClient client_id=aiokafka-0.7.0>',
client.__repr__())
self.assertEqual(
sorted([('127.0.0.1', 9092, socket.AF_INET),
Expand Down

0 comments on commit ea0a5c8

Please sign in to comment.