From 01595bbda3380154cc4e72702a1f82502a15940a Mon Sep 17 00:00:00 2001 From: semantic-release Date: Wed, 7 Aug 2024 13:02:45 +0000 Subject: [PATCH] 2.3.5 Automatically generated by python-semantic-release --- CHANGELOG.md | 12 ++++++++++++ docs/conf.py | 2 +- pyproject.toml | 2 +- src/aiohappyeyeballs/__init__.py | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 154a595..65faf3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v2.3.5 (2024-08-07) + +### Fix + +- Remove upper bound on python requirement (#74) ([`0de1e53`](https://github.com/aio-libs/aiohappyeyeballs/commit/0de1e534fc5b7526e11bf203ab09b95b13f3070b)) +- Preserve errno if all exceptions have the same errno (#77) ([`7bbb2bf`](https://github.com/aio-libs/aiohappyeyeballs/commit/7bbb2bf0feb3994953a52a1d606e682acad49cb8)) +- Adjust license classifier to better reflect license terms (#78) ([`56e7ba6`](https://github.com/aio-libs/aiohappyeyeballs/commit/56e7ba612c5029364bb960b07022a2b720f0a967)) + +### Documentation + +- Add link to happy eyeballs explanation (#73) ([`077710c`](https://github.com/aio-libs/aiohappyeyeballs/commit/077710c150b6c762ffe408e0ad418c506a2d6f31)) + ## v2.3.4 (2024-07-31) ### Fix diff --git a/docs/conf.py b/docs/conf.py index 4b70d6c..e9bff00 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.3.4" +release = "2.3.5" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 4384705..aa4b2c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiohappyeyeballs" -version = "2.3.4" +version = "2.3.5" description = "Happy Eyeballs for asyncio" authors = ["J. Nick Koston "] license = "Python-2.0" diff --git a/src/aiohappyeyeballs/__init__.py b/src/aiohappyeyeballs/__init__.py index c6c5726..313fef2 100644 --- a/src/aiohappyeyeballs/__init__.py +++ b/src/aiohappyeyeballs/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.3.4" +__version__ = "2.3.5" from .impl import start_connection from .types import AddrInfoType