From 4ab9b12babeb429b36de2276524b2b26e225e4de Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 17 Nov 2024 11:27:34 -0500 Subject: [PATCH] Release 1.17.2 (#1419) --- CHANGES.rst | 56 ++++++++++++++++++++++++++++++++++++++ CHANGES/1411.bugfix.rst | 1 - CHANGES/1411.packaging.rst | 1 - CHANGES/1412.bugfix.rst | 3 -- CHANGES/1412.packaging.rst | 1 - CHANGES/1413.bugfix.rst | 2 -- CHANGES/1414.feature.rst | 2 -- CHANGES/1418.misc.rst | 1 - yarl/__init__.py | 2 +- 9 files changed, 57 insertions(+), 12 deletions(-) delete mode 120000 CHANGES/1411.bugfix.rst delete mode 120000 CHANGES/1411.packaging.rst delete mode 100644 CHANGES/1412.bugfix.rst delete mode 120000 CHANGES/1412.packaging.rst delete mode 100644 CHANGES/1413.bugfix.rst delete mode 100644 CHANGES/1414.feature.rst delete mode 100644 CHANGES/1418.misc.rst diff --git a/CHANGES.rst b/CHANGES.rst index d11accb7..7f55ff0d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,62 @@ Changelog .. towncrier release notes start +1.17.2 +====== + +*(2024-11-17)* + + +Bug fixes +--------- + +- Stopped implicitly allowing the use of Cython pre-release versions when + building the distribution package -- by :user:`ajsanchezsanz` and + :user:`markgreene74`. + + *Related issues and pull requests on GitHub:* + :issue:`1411`, :issue:`1412`. + +- Fixed a bug causing :attr:`~yarl.URL.port` to return the default port when the given port was zero + -- by :user:`gmacon`. + + *Related issues and pull requests on GitHub:* + :issue:`1413`. + + +Features +-------- + +- Make error messages include details of incorrect type when ``port`` is not int in :py:meth:`~yarl.URL.build`. + -- by :user:`Cycloctane`. + + *Related issues and pull requests on GitHub:* + :issue:`1414`. + + +Packaging updates and notes for downstreams +------------------------------------------- + +- Stopped implicitly allowing the use of Cython pre-release versions when + building the distribution package -- by :user:`ajsanchezsanz` and + :user:`markgreene74`. + + *Related issues and pull requests on GitHub:* + :issue:`1411`, :issue:`1412`. + + +Miscellaneous internal changes +------------------------------ + +- Improved performance of the :py:meth:`~yarl.URL.joinpath` method -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1418`. + + +---- + + 1.17.1 ====== diff --git a/CHANGES/1411.bugfix.rst b/CHANGES/1411.bugfix.rst deleted file mode 120000 index feb4a485..00000000 --- a/CHANGES/1411.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -1412.bugfix.rst \ No newline at end of file diff --git a/CHANGES/1411.packaging.rst b/CHANGES/1411.packaging.rst deleted file mode 120000 index dc8075c1..00000000 --- a/CHANGES/1411.packaging.rst +++ /dev/null @@ -1 +0,0 @@ -1412.packaging.rst \ No newline at end of file diff --git a/CHANGES/1412.bugfix.rst b/CHANGES/1412.bugfix.rst deleted file mode 100644 index be95775e..00000000 --- a/CHANGES/1412.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -Stopped implicitly allowing the use of Cython pre-release versions when -building the distribution package -- by :user:`ajsanchezsanz` and -:user:`markgreene74`. diff --git a/CHANGES/1412.packaging.rst b/CHANGES/1412.packaging.rst deleted file mode 120000 index feb4a485..00000000 --- a/CHANGES/1412.packaging.rst +++ /dev/null @@ -1 +0,0 @@ -1412.bugfix.rst \ No newline at end of file diff --git a/CHANGES/1413.bugfix.rst b/CHANGES/1413.bugfix.rst deleted file mode 100644 index 28b948de..00000000 --- a/CHANGES/1413.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fixed a bug causing ``URL.port`` to return the default port when the given port was zero --- by :user:`gmacon`. diff --git a/CHANGES/1414.feature.rst b/CHANGES/1414.feature.rst deleted file mode 100644 index e34d624e..00000000 --- a/CHANGES/1414.feature.rst +++ /dev/null @@ -1,2 +0,0 @@ -Make error messages include details of incorrect type when ``port`` is not int in :py:meth:`~yarl.URL.build`. --- by :user:`Cycloctane`. diff --git a/CHANGES/1418.misc.rst b/CHANGES/1418.misc.rst deleted file mode 100644 index 7244499b..00000000 --- a/CHANGES/1418.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of the :py:meth:`~yarl.URL.joinpath` method -- by :user:`bdraco`. diff --git a/yarl/__init__.py b/yarl/__init__.py index 3d38d3aa..9dea75d4 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.2.dev0" +__version__ = "1.17.2" __all__ = ( "URL",