From 40e8a34c8bcee281a115d1ea4149205b849f7724 Mon Sep 17 00:00:00 2001 From: Fantix King Date: Mon, 14 Oct 2024 16:02:05 -0400 Subject: [PATCH] uvloop 0.21.0 Changes ======= * Add cleanup_socket param on create_unix_server() (#623) (by @fantix in d6114d2) Fixes ===== * Use cythonized SO_REUSEPORT rather than the unwrapped native one. (#609) (by @ptribble in 4083a94e for #550) * UDP errors should result in protocol.error_received (#601) (by @jensbjorgensen in 3c3bbeff) * Updates for Cython3 (#587) (by @alan-brooks in 3fba9fab for #587) * Test with Python 3.13 (#610) (by @edgarrmondragon in fb5a139) --- uvloop/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uvloop/_version.py b/uvloop/_version.py index 8210e8e..9e1722c 100644 --- a/uvloop/_version.py +++ b/uvloop/_version.py @@ -10,4 +10,4 @@ # supported platforms, publish the packages on PyPI, merge the PR # to the target branch, create a Git tag pointing to the commit. -__version__ = '0.21.0beta1' +__version__ = '0.21.0'