From 87efde934307191329a6ab53580905a56adafc4a Mon Sep 17 00:00:00 2001 From: Taras Date: Tue, 18 Oct 2016 11:16:11 +0300 Subject: [PATCH] Bumpversion 0.1.3. Minor fixes and infinite loop in heartbeat fix. --- CHANGES.rst | 9 +++++++++ aiokafka/__init__.py | 2 +- tests/test_client.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index ed1b5ad8..832705fa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,15 @@ CHANGES -------- +0.1.3 (2016-10-18) +^^^^^^^^^^^^^^^^^^ + +* Fixed bug with infinite loop on heartbeats with autocommit=True. #44 +* Bumped python-kafka to version 1.1.1 +* Fixed docker test runner with multiple interfaces +* Minor documentation fixes + + 0.1.2 (2016-04-30) ^^^^^^^^^^^^^^^^^^ diff --git a/aiokafka/__init__.py b/aiokafka/__init__.py index fe387ae5..b4a8b05a 100644 --- a/aiokafka/__init__.py +++ b/aiokafka/__init__.py @@ -6,7 +6,7 @@ import sys # noqa PY_35 = sys.version_info >= (3, 5) -__version__ = '0.1.2' +__version__ = '0.1.3' from .client import AIOKafkaClient # noqa from .producer import AIOKafkaProducer # noqa diff --git a/tests/test_client.py b/tests/test_client.py index d5b35f02..0e02bd63 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -29,7 +29,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__()) + '', client.__repr__()) self.assertEqual( sorted([('127.0.0.1', 9092, socket.AF_INET), ('127.0.0.2', 9092, socket.AF_INET),