Browse Source

Release 5.0.1

pull/599/head v5.0.1
Miguel Grinberg 4 years ago
parent
commit
061ee73920
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 5
      CHANGES.md
  2. 2
      socketio/__init__.py

5
CHANGES.md

@ -1,5 +1,10 @@
# python-socketio change log
**Release 5.0.1** - 2020-12-08
- Fix Engine.IO dependency version ([commit](https://github.com/miguelgrinberg/python-socketio/commit/d2bb2b12e536036e34d94a1ad87e0d48a1a504a8))
- Conversion from Socket.IO sid to Engine.IO sid ([commit](https://github.com/miguelgrinberg/python-socketio/commit/805b33fa7d2e38be4ada60e382c989433fd5af03))
**Release 5.0.0** - 2020-12-07
- Update to match the JavaScript Socket.IO 3.x releases (Socket.IO v5 protocol revision)

2
socketio/__init__.py

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

Loading…
Cancel
Save