From 288812da79de19f0148013e797b5bcbb4243d281 Mon Sep 17 00:00:00 2001 From: Martijn Pieters Date: Tue, 25 Apr 2023 16:49:54 +0100 Subject: [PATCH] Bump the project version to 1.9.2 --- CHANGES.rst | 9 +++++++++ CHANGES/854.bugfix.rst | 1 - yarl/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 CHANGES/854.bugfix.rst diff --git a/CHANGES.rst b/CHANGES.rst index f615326d..1c7d4340 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,15 @@ Changelog .. towncrier release notes start +1.8.2 (2023-04-25) +================== + +Bugfixes +-------- + +- Fix regression with truediv and absolute URLs with empty paths causing the raw path to lack the leading ``/``. (`#854 `_) + + 1.9.1 (2023-04-21) ================== diff --git a/CHANGES/854.bugfix.rst b/CHANGES/854.bugfix.rst deleted file mode 100644 index 55a67108..00000000 --- a/CHANGES/854.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix regression with truediv and absolute URLs with empty paths causing the raw path to lack the leading ``/``. diff --git a/yarl/__init__.py b/yarl/__init__.py index 3e0059c8..b92ac79d 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.9.1" +__version__ = "1.9.2" __all__ = ("URL", "cache_clear", "cache_configure", "cache_info")