Skip to content

Commit

Permalink
Set development version v0.4.2.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
tvoinarovskyi committed May 15, 2018
1 parent 4d4b64c commit a743332
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGES
--------

0.4.X (XXXX-XX-XX)
^^^^^^^^^^^^^^^^^^

*

0.4.1 (2018-05-13)
^^^^^^^^^^^^^^^^^^

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.4.1' # noqa
__version__ = '0.4.2.dev' # 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 @@ -32,7 +32,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.4.1>', client.__repr__())
'<AIOKafkaClient client_id=aiokafka-0.4.2.dev>', 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 a743332

Please sign in to comment.