Browse Source

Release 4.5.1

pull/449/head v4.5.1
Miguel Grinberg 5 years ago
parent
commit
a4b0a5e910
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 4
      CHANGES.md
  2. 2
      socketio/__init__.py

4
CHANGES.md

@ -1,5 +1,9 @@
# python-socketio change log # python-socketio change log
**Release 4.5.1** - 2020-03-22
- Fix endless loop when disconnecting on multi-server deployments [#441](https://github.com/miguelgrinberg/python-socketio/issues/441) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/16e873dbc7e100780c83a907a11299bd8269e5e3))
**Release 4.5.0** - 2020-03-14 **Release 4.5.0** - 2020-03-14
- Add support for client disconnects in multi-server configurations [#1174](https://github.com/miguelgrinberg/Flask-SocketIO/issues/1174) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/01378ef1efca73330327006be467270462d504e0)) - Add support for client disconnects in multi-server configurations [#1174](https://github.com/miguelgrinberg/Flask-SocketIO/issues/1174) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/01378ef1efca73330327006be467270462d504e0))

2
socketio/__init__.py

@ -27,7 +27,7 @@ else: # pragma: no cover
AsyncRedisManager = None AsyncRedisManager = None
AsyncAioPikaManager = None AsyncAioPikaManager = None
__version__ = '4.5.1dev' __version__ = '4.5.1'
__all__ = ['__version__', 'Client', 'Server', 'BaseManager', 'PubSubManager', __all__ = ['__version__', 'Client', 'Server', 'BaseManager', 'PubSubManager',
'KombuManager', 'RedisManager', 'ZmqManager', 'KafkaManager', 'KombuManager', 'RedisManager', 'ZmqManager', 'KafkaManager',

Loading…
Cancel
Save