diff --git a/CHANGES.rst b/CHANGES.rst index 319d8891a..1cc11168a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,34 @@ Changelog .. towncrier release notes start +1.15.4 +====== + +*(2024-10-16)* + + +Miscellaneous internal changes +------------------------------ + +- Improved performance of the quoter when all characters are safe -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1288`. + +- Improved performance of unquoting strings -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1292`, :issue:`1293`. + +- Improved performance of calling :py:meth:`~yarl.URL.build` -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1297`. + + +---- + + 1.15.3 ====== diff --git a/CHANGES/1288.misc.rst b/CHANGES/1288.misc.rst deleted file mode 100644 index 3793e37e0..000000000 --- a/CHANGES/1288.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of the quoter when all characters are safe -- by :user:`bdraco`. diff --git a/CHANGES/1292.misc.rst b/CHANGES/1292.misc.rst deleted file mode 100644 index 10ee43a11..000000000 --- a/CHANGES/1292.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of unquoting strings -- by :user:`bdraco`. diff --git a/CHANGES/1293.misc.rst b/CHANGES/1293.misc.rst deleted file mode 120000 index 58e86ac6d..000000000 --- a/CHANGES/1293.misc.rst +++ /dev/null @@ -1 +0,0 @@ -1292.misc.rst \ No newline at end of file diff --git a/CHANGES/1297.misc.rst b/CHANGES/1297.misc.rst deleted file mode 100644 index 0f0b5784d..000000000 --- a/CHANGES/1297.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of calling :py:meth:`~yarl.URL.build` -- by :user:`bdraco`. diff --git a/yarl/__init__.py b/yarl/__init__.py index ba8f7a236..d46364c6f 100644 --- a/yarl/__init__.py +++ b/yarl/__init__.py @@ -8,7 +8,7 @@ cache_info, ) -__version__ = "1.15.4.dev0" +__version__ = "1.15.4" __all__ = ( "URL",