Browse Source

Release 4.2.1

pull/348/head v4.2.1
Miguel Grinberg 6 years ago
parent
commit
33082cf8d5
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
**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))

2
socketio/__init__.py

@ -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',

Loading…
Cancel
Save