From 4d5504adad090ce051bdc10eabbe0491771e18ad Mon Sep 17 00:00:00 2001 From: Waldemar Quevedo Date: Sun, 22 May 2016 14:44:27 -0700 Subject: [PATCH 1/2] Release v0.2.3 --- nats/__init__.py | 2 +- nats/io/client.py | 1 + tests/client_test.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/nats/__init__.py b/nats/__init__.py index 749388c..6298112 100644 --- a/nats/__init__.py +++ b/nats/__init__.py @@ -1,2 +1,2 @@ -__version__ = b'0.2.2' +__version__ = b'0.2.3' __lang__ = b'python2' diff --git a/nats/io/client.py b/nats/io/client.py index 853f903..fec6f14 100644 --- a/nats/io/client.py +++ b/nats/io/client.py @@ -16,6 +16,7 @@ from nats.io.errors import * from nats.io.utils import * from nats.protocol.parser import * +from nats import __lang__, __version__ _CRLF_ = b'\r\n' _SPC_ = b' ' diff --git a/tests/client_test.py b/tests/client_test.py index ae9c8df..bf90f1b 100644 --- a/tests/client_test.py +++ b/tests/client_test.py @@ -24,6 +24,7 @@ from nats.io.client import Client, __version__ from nats.io.utils import new_inbox, INBOX_PREFIX from nats.protocol.parser import * +from nats import __lang__, __version__ class Gnatsd(object): From 73f401756dac944877dcdc83f4bbd6b7d80543c1 Mon Sep 17 00:00:00 2001 From: Waldemar Quevedo Date: Sun, 22 May 2016 14:53:41 -0700 Subject: [PATCH 2/2] Bump to 0.2.4 --- nats/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nats/__init__.py b/nats/__init__.py index 6298112..cb9eb30 100644 --- a/nats/__init__.py +++ b/nats/__init__.py @@ -1,2 +1,2 @@ -__version__ = b'0.2.3' +__version__ = b'0.2.4' __lang__ = b'python2'