Miguel Grinberg
6 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
2 changed files with
5 additions and
1 deletions
-
CHANGES.md
-
socketio/__init__.py
|
|
@ -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)) |
|
|
|
|
|
@ -24,7 +24,7 @@ else: # pragma: no cover |
|
|
|
AsyncNamespace = None |
|
|
|
AsyncRedisManager = None |
|
|
|
|
|
|
|
__version__ = '4.2.1dev' |
|
|
|
__version__ = '4.2.1' |
|
|
|
|
|
|
|
__all__ = ['__version__', 'Client', 'Server', 'BaseManager', 'PubSubManager', |
|
|
|
'KombuManager', 'RedisManager', 'ZmqManager', 'Namespace', |
|
|
|