diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ed170e..eaa57b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v2.4.0 (2024-08-19) + +### Feature + +- Add support for python 3.13 (#86) ([`4f2152f`](https://github.com/aio-libs/aiohappyeyeballs/commit/4f2152fbb6b1d915c2fd68219339d998c47a71f9)) + +### Documentation + +- Fix a trivial typo in readme.md (#84) ([`f5ae7d4`](https://github.com/aio-libs/aiohappyeyeballs/commit/f5ae7d4bce04ee0645257ac828745a3b989ef149)) + ## v2.3.7 (2024-08-17) ### Fix diff --git a/docs/conf.py b/docs/conf.py index 1a65a85..858f543 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.7" +release = "2.4.0" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index c3b3090..7363693 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiohappyeyeballs" -version = "2.3.7" +version = "2.4.0" description = "Happy Eyeballs for asyncio" authors = ["J. Nick Koston "] license = "Python-2.0.1" diff --git a/src/aiohappyeyeballs/__init__.py b/src/aiohappyeyeballs/__init__.py index 0273ecb..9c98be9 100644 --- a/src/aiohappyeyeballs/__init__.py +++ b/src/aiohappyeyeballs/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.3.7" +__version__ = "2.4.0" from .impl import start_connection from .types import AddrInfoType