From 3c4f2a6892d62170d5c14896dc65714e5938a494 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Sat, 30 Nov 2024 18:42:08 +0000 Subject: [PATCH] 2.4.4 Automatically generated by python-semantic-release --- CHANGELOG.md | 6 ++++++ docs/conf.py | 2 +- pyproject.toml | 2 +- src/aiohappyeyeballs/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02b6334..51e8b63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v2.4.4 (2024-11-30) + +### Fix + +- Handle oserror on failure to close socket instead of raising indexerror (#114) ([`c542f68`](https://github.com/aio-libs/aiohappyeyeballs/commit/c542f684d329fed04093caa2b31d8f7f6e0e0949)) + ## v2.4.3 (2024-09-30) ### Fix diff --git a/docs/conf.py b/docs/conf.py index 4aa0fac..34992db 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.3" +release = "2.4.4" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 2dab37a..18b6cfa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiohappyeyeballs" -version = "2.4.3" +version = "2.4.4" 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 2a373ea..5520f4c 100644 --- a/src/aiohappyeyeballs/__init__.py +++ b/src/aiohappyeyeballs/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.4.3" +__version__ = "2.4.4" from .impl import start_connection from .types import AddrInfoType