diff --git a/osmopy/__init__.py b/osmopy/__init__.py index c3d4b8c..4e818ed 100644 --- a/osmopy/__init__.py +++ b/osmopy/__init__.py @@ -1,4 +1,4 @@ #!/usr/bin/env python -__version__ = '0.0.8' +__version__ = '0.0.9' __all__ = ['obscvty', 'osmoutil', 'osmo_ipa', 'osmo_interact'] diff --git a/tests/test_py3.py b/tests/test_py3.py index 909d057..1c0c19b 100644 --- a/tests/test_py3.py +++ b/tests/test_py3.py @@ -38,6 +38,8 @@ if __name__ == '__main__': test_host = '127.0.0.5' test_port = str(random.randint(1025, 60000)) + print('Testing v%s on %s:%s' % (__version__, test_host, test_port)) + # Each client connection will create a new protocol instance server = loop.run_until_complete(loop.create_server(CtrlProtocol, test_host, test_port))