From 40e8a34c8bcee281a115d1ea4149205b849f7724 Mon Sep 17 00:00:00 2001 From: Fantix King Date: Mon, 14 Oct 2024 16:02:05 -0400 Subject: [PATCH 1/2] 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 8210e8e8..9e1722c0 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' From 2e8feae2a6db57bb611ffa388d28443487f4db94 Mon Sep 17 00:00:00 2001 From: Fantix King Date: Mon, 14 Oct 2024 17:58:34 -0400 Subject: [PATCH 2/2] bump cibuildwheel version --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c5075a32..29e7a7a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -114,7 +114,7 @@ jobs: run: | brew install gnu-sed libtool autoconf automake - - uses: pypa/cibuildwheel@bd033a44476646b606efccdd5eed92d5ea1d77ad # v2.20.0 + - uses: pypa/cibuildwheel@7940a4c0e76eb2030e473a5f864f291f63ee879b # v2.21.3 env: CIBW_BUILD_VERBOSITY: 1 CIBW_BUILD: ${{ matrix.cibw_python }}