From 8d586205e459ff0200d5620159a824c6f016ffe4 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Mon, 1 Nov 2021 19:45:04 +0200 Subject: [PATCH] Bump to 1.7.2 --- CHANGES.rst | 9 +++++++++ CHANGES/623.bugfix.rst | 1 - yarl/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 CHANGES/623.bugfix.rst diff --git a/CHANGES.rst b/CHANGES.rst index e40cb98a..68c2265a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,15 @@ Changelog .. towncrier release notes start +1.7.2 (2021-11-01) +================== + +Bugfixes +-------- + +- Changed call in ``with_port()`` to stop reencoding parts of the URL that were already encoded. (`#623 `_) + + 1.7.1 (2021-10-07) ================== diff --git a/CHANGES/623.bugfix.rst b/CHANGES/623.bugfix.rst deleted file mode 100644 index fb2d39d6..00000000 --- a/CHANGES/623.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Changed call in ``with_port()`` to stop reencoding parts of the URL that were already encoded. diff --git a/yarl/__init__.py b/yarl/__init__.py index 83e00c87..8f617b0f 100644 --- a/yarl/__init__.py +++ b/yarl/__init__.py @@ -1,5 +1,5 @@ from ._url import URL, cache_clear, cache_configure, cache_info -__version__ = "1.7.1" +__version__ = "1.7.2" __all__ = ("URL", "cache_clear", "cache_configure", "cache_info")