Skip to content

Commit

Permalink
Bumpversion 0.1.3. Minor fixes and infinite loop in heartbeat fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
tvoinarovskyi committed Oct 18, 2016
1 parent 21a7f5a commit 87efde9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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)
^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion aiokafka/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
'<AIOKafkaClient client_id=aiokafka-0.1.2>', client.__repr__())
'<AIOKafkaClient client_id=aiokafka-0.1.3>', client.__repr__())
self.assertEqual(
sorted([('127.0.0.1', 9092, socket.AF_INET),
('127.0.0.2', 9092, socket.AF_INET),
Expand Down

0 comments on commit 87efde9

Please sign in to comment.