diff --git a/CHANGELOG.md b/CHANGELOG.md index 44b0cc4..02b6334 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v2.4.3 (2024-09-30) + +### Fix + +- Rewrite staggered_race to be race safe (#101) ([`9db617a`](https://github.com/aio-libs/aiohappyeyeballs/commit/9db617a982ee27994bf13c805f9c4f054f05de47)) +- Re-raise runtimeerror when uvloop raises runtimeerror during connect (#105) ([`c8f1fa9`](https://github.com/aio-libs/aiohappyeyeballs/commit/c8f1fa93d698f216f84de7074a6282777fbf0439)) + ## v2.4.2 (2024-09-27) ### Fix diff --git a/docs/conf.py b/docs/conf.py index 8e6f702..4aa0fac 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,7 +7,7 @@ project = "aiohappyeyeballs" copyright = "2023, J. Nick Koston" author = "J. Nick Koston" -release = "2.4.2" +release = "2.4.3" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 8bee02f..2dab37a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiohappyeyeballs" -version = "2.4.2" +version = "2.4.3" description = "Happy Eyeballs for asyncio" authors = ["J. Nick Koston "] license = "PSF-2.0" diff --git a/src/aiohappyeyeballs/__init__.py b/src/aiohappyeyeballs/__init__.py index 7f3bf14..47ebc5e 100644 --- a/src/aiohappyeyeballs/__init__.py +++ b/src/aiohappyeyeballs/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.4.2" +__version__ = "2.4.3" from .impl import start_connection from .types import AddrInfoType