From cd3649cf50c94fb53fbe41f6de321ddd23148efb Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 9 Dec 2023 21:34:29 +0000 Subject: [PATCH] 1.0.0 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 4c10ea2..628f4e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.0.0 (2023-12-09) + +### Breaking + +- Rename create_connection to start_connection (#12) ([`f8b6038`](https://github.com/bdraco/aiohappyeyeballs/commit/f8b60383d9b9f013baf421ad4e4e183559b7a705)) + ## v0.9.0 (2023-12-09) ### Feature diff --git a/docs/conf.py b/docs/conf.py index 2254e7c..fd676c8 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 = "0.9.0" +release = "1.0.0" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index b920480..dcaf92e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiohappyeyeballs" -version = "0.9.0" +version = "1.0.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 045126c..2ff53b9 100644 --- a/src/aiohappyeyeballs/__init__.py +++ b/src/aiohappyeyeballs/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.9.0" +__version__ = "1.0.0" from .impl import AddrInfoType, start_connection