Browse Source

Release 5.2.1

pull/683/head v5.2.1
Miguel Grinberg 4 years ago
parent
commit
2ae46785d0
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 5.2.1** - 2021-04-18
- Fixed incorrect handling of dashes inside the JSON payload of a packet [#675](https://github.com/miguelgrinberg/python-socketio/issues/675) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/f4e101079fdc49c673ab9433aca8346480cc9e4f))
**Release 5.2.0** - 2021-04-17
- Pass custom authentication data with client connection [#661](https://github.com/miguelgrinberg/python-socketio/issues/661) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/a07eedf54e535843401cd8b280c1bb24de3dfd27))

2
socketio/__init__.py

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

Loading…
Cancel
Save