Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tvoinarovskyi committed May 15, 2020
1 parent d4f7681 commit 39d734a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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.0.dev' # noqa
__version__ = '0.6.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 @@ -37,7 +37,7 @@ def test_init_with_list(self):
loop=self.loop, 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.0.dev>',
'<AIOKafkaClient client_id=aiokafka-0.6.0>',
client.__repr__())
self.assertEqual(
sorted([('127.0.0.1', 9092, socket.AF_INET),
Expand Down

0 comments on commit 39d734a

Please sign in to comment.