diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d4e12d..9248c04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,8 @@ All notable changes to `winuvloop` are documented here. -## 0.2.2 - Unreleased +## 0.2.3 - 2026-04-25 -- Add public API stubs for better editor and type-checker ergonomics. - Add `backend_version()` for support logs and diagnostics. - Improve missing-backend import errors with Python implementation context. - Expand README guidance for `uvloop`, `winloop`, and `winuvloop` selection. @@ -16,6 +15,10 @@ All notable changes to `winuvloop` are documented here. - Keep Python 3.9 development installs on the compatible Twine line so Dependabot security updates can resolve. +## 0.2.2 - 2026-04-25 + +- Add public API stubs for better editor and type-checker ergonomics. + ## 0.2.1 - 2026-04-25 - Move packaging to standard PEP 621 metadata and the `uv_build` backend. diff --git a/pyproject.toml b/pyproject.toml index 84f96c4..528ca63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "uv_build" [project] name = "winuvloop" -version = "0.2.2" +version = "0.2.3" description = "Use uvloop on Linux/macOS and winloop on Windows through one small asyncio compatibility import." readme = "README.md" requires-python = ">=3.8.1" diff --git a/uv.lock b/uv.lock index 459096c..4475adf 100644 --- a/uv.lock +++ b/uv.lock @@ -1397,7 +1397,7 @@ wheels = [ [[package]] name = "winuvloop" -version = "0.2.2" +version = "0.2.3" source = { editable = "." } dependencies = [ { name = "uvloop", marker = "platform_python_implementation == 'CPython' and sys_platform != 'win32'" },