From 57e38f0e3c5f51096a6793305c9b9226a781dcf5 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Fri, 15 Jul 2022 20:05:00 +0100 Subject: [PATCH] Release 5.7.1 --- CHANGES.md | 5 +++++ setup.cfg | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 22284da1..646066d1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # python-socketio change log +**Release 5.7.1** - 2022-07-15 + +- Add `namespaces` argument to `Server` and `AsyncServer` [#822](https://github.com/miguelgrinberg/python-socketio/issues/822) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/efe87d867a205493654107d381bdb8b619b8ab2d)) +- Add missing `await` in asyncio server [#952](https://github.com/miguelgrinberg/python-socketio/issues/952) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/d4e69fb7ceecdb98584f36e085a186eb4da23b07)) (thanks **sjrodahl**!) + **Release 5.7.0** - 2022-07-04 - Server refuses connections on unknown namespaces [#822](https://github.com/miguelgrinberg/python-socketio/issues/822) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/44715012dc0d578b067a9a389c8aef2ce39f65c1)) diff --git a/setup.cfg b/setup.cfg index 27c1a673..1d42765b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = python-socketio -version = 5.7.1.dev0 +version = 5.7.1 author = Miguel Grinberg author_email = miguel.grinberg@gmail.com description = Socket.IO server and client for Python