From f486f9498ea96f02cc4c1b49b1c9645a5c1c14a8 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 28 Oct 2024 09:42:42 -1000 Subject: [PATCH] Release 1.17.0 --- CHANGES.rst | 18 ++++++++++++++++++ CHANGES/1375.feature.rst | 1 - yarl/__init__.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) delete mode 100644 CHANGES/1375.feature.rst diff --git a/CHANGES.rst b/CHANGES.rst index e808a7ae3..bd72f39ca 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,24 @@ Changelog .. towncrier release notes start +1.17.0 +====== + +*(2024-10-28)* + + +Features +-------- + +- Added :attr:`~yarl.URL.host_port_subcomponent` which returns the :rfc:`3986#section-3.2.2` host and :rfc:`3986#section-3.2.3` port subcomponent -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1375`. + + +---- + + 1.16.0 ====== diff --git a/CHANGES/1375.feature.rst b/CHANGES/1375.feature.rst deleted file mode 100644 index 079f310b8..000000000 --- a/CHANGES/1375.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added :attr:`~yarl.URL.host_port_subcomponent` which returns the :rfc:`3986#section-3.2.2` host and :rfc:`3986#section-3.2.3` port subcomponent -- by :user:`bdraco`. diff --git a/yarl/__init__.py b/yarl/__init__.py index 755693804..444d1088f 100644 --- a/yarl/__init__.py +++ b/yarl/__init__.py @@ -1,7 +1,7 @@ from ._query import Query, QueryVariable, SimpleQuery from ._url import URL, cache_clear, cache_configure, cache_info -__version__ = "1.17.0.dev0" +__version__ = "1.17.0" __all__ = ( "URL",