Skip to content

Commit

Permalink
Bumpversion 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tvoinarovskyi committed Apr 17, 2017
1 parent cbbc430 commit eb00b52
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
Expand Up @@ -7,7 +7,7 @@
except ImportError:
from asyncio import async as ensure_future

__version__ = '0.2.2.dev'
__version__ = '0.2.2'
PY_35 = sys.version_info >= (3, 5)

from .client import AIOKafkaClient # 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 @@ -30,7 +30,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.2.2.dev>', client.__repr__())
'<AIOKafkaClient client_id=aiokafka-0.2.2>', 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 eb00b52

Please sign in to comment.