diff --git a/CHANGELOG.md b/CHANGELOG.md index 228bd93..43f91ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.6.0 (2023-12-09) + +### Feature + +- Add coverage for multiple and same exceptions (#20) ([`2781b87`](https://github.com/bdraco/aiohappyeyeballs/commit/2781b87c56aa1c08345d91dce5c1642f2b3e396d)) + ## v1.5.0 (2023-12-09) ### Feature diff --git a/docs/conf.py b/docs/conf.py index 7a93116..dcfbd30 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 = "1.5.0" +release = "1.6.0" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index d92facc..fd619e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiohappyeyeballs" -version = "1.5.0" +version = "1.6.0" description = "Happy Eyeballs" authors = ["J. Nick Koston "] license = "Apache Software License 2.0" diff --git a/src/aiohappyeyeballs/__init__.py b/src/aiohappyeyeballs/__init__.py index 84a5946..48c9ecb 100644 --- a/src/aiohappyeyeballs/__init__.py +++ b/src/aiohappyeyeballs/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.5.0" +__version__ = "1.6.0" from .impl import AddrInfoType, start_connection