diff --git a/aiokafka/__init__.py b/aiokafka/__init__.py index 426213ae..e19d6ec2 100644 --- a/aiokafka/__init__.py +++ b/aiokafka/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.6.0.dev' # noqa +__version__ = '0.6.0' # noqa from .abc import ConsumerRebalanceListener from .client import AIOKafkaClient diff --git a/tests/test_client.py b/tests/test_client.py index f598e273..3070dcbf 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -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( - '', + '', client.__repr__()) self.assertEqual( sorted([('127.0.0.1', 9092, socket.AF_INET),