From 4a773911993bacf08ae6aa3137429f0004355773 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 27 Sep 2024 13:35:08 -0500 Subject: [PATCH] Release 1.13.1 --- CHANGES.rst | 18 ++++++++++++++++++ CHANGES/1163.misc.rst | 1 - yarl/__init__.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) delete mode 100644 CHANGES/1163.misc.rst diff --git a/CHANGES.rst b/CHANGES.rst index 28743196..de9d1aba 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,24 @@ Changelog .. towncrier release notes start +1.13.1 +====== + +*(2024-09-27)* + + +Miscellaneous internal changes +------------------------------ + +- Improved performance of calling :py:meth:`~yarl.URL.build` with ``authority`` -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1163`. + + +---- + + 1.13.0 ====== diff --git a/CHANGES/1163.misc.rst b/CHANGES/1163.misc.rst deleted file mode 100644 index a4976b74..00000000 --- a/CHANGES/1163.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of calling :py:meth:`~yarl.URL.build` with ``authority`` -- by :user:`bdraco`. diff --git a/yarl/__init__.py b/yarl/__init__.py index 094c22d5..1bc12c9e 100644 --- a/yarl/__init__.py +++ b/yarl/__init__.py @@ -8,7 +8,7 @@ cache_info, ) -__version__ = "1.13.1.dev0" +__version__ = "1.13.1" __all__ = ( "URL",