From 33082cf8d58c171083aabc1f374e727c1166a3f2 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sat, 27 Jul 2019 19:50:31 +0100 Subject: [PATCH] Release 4.2.1 --- CHANGES.md | 4 ++++ socketio/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 5fbc942a..ce955465 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # python-socketio change log +**Release 4.2.1** - 2019-07-27 + +- Added rediss:// URL scheme to AsyncRedisManager [#319](https://github.com/miguelgrinberg/python-socketio/issues/319) * Added rediss:// URL scheme to AsyncRedisManager * Obeyed flake8 ([commit](https://github.com/miguelgrinberg/python-socketio/commit/0b25ff42b8927ac881be7c8ebe1785819bc4c35e)) (thanks **Dylan Anthony**!) + **Release 4.2.0** - 2019-06-29 - Handle keyboard interrupt during reconnect [#301](https://github.com/miguelgrinberg/python-socketio/issues/301) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/fa53e3869ce27af3d497d6e021aa2e3d5c808ece)) diff --git a/socketio/__init__.py b/socketio/__init__.py index b5849b80..f0a95418 100644 --- a/socketio/__init__.py +++ b/socketio/__init__.py @@ -24,7 +24,7 @@ AsyncNamespace = None AsyncRedisManager = None -__version__ = '4.2.1dev' +__version__ = '4.2.1' __all__ = ['__version__', 'Client', 'Server', 'BaseManager', 'PubSubManager', 'KombuManager', 'RedisManager', 'ZmqManager', 'Namespace',