diff --git a/CHANGES.rst b/CHANGES.rst index de9d1aba7..75755b363 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,64 @@ Changelog .. towncrier release notes start +1.14.0 +====== + +*(2024-10-08)* + + +Packaging updates and notes for downstreams +------------------------------------------- + +- Switched to using the :mod:`propcache ` package for property caching + -- by :user:`bdraco`. + + The :mod:`propcache ` package is derived from the property caching + code in :mod:`yarl` and has been broken out to avoid maintaining it for multiple + projects. + + *Related issues and pull requests on GitHub:* + :issue:`1169`. + + +Contributor-facing changes +-------------------------- + +- Started testing with Hypothesis -- by :user:`webknjaz` and :user:`bdraco`. + + Special thanks to :user:`Zac-HD` for helping us get started with this framework. + + *Related issues and pull requests on GitHub:* + :issue:`860`. + + +Miscellaneous internal changes +------------------------------ + +- Improved performance of :py:meth:`~yarl.URL.is_default_port` when no explicit port is set -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1168`. + +- Improved performance of converting :class:`~yarl.URL` to a string when no explicit port is set -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1170`. + +- Improved performance of the :py:meth:`~yarl.URL.origin` method -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1175`. + +- Improved performance of encoding hosts -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1176`. + + +---- + + 1.13.1 ====== diff --git a/CHANGES/1168.misc.rst b/CHANGES/1168.misc.rst deleted file mode 100644 index 9d5032a91..000000000 --- a/CHANGES/1168.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of :py:meth:`~yarl.URL.is_default_port` when no explicit port is set -- by :user:`bdraco`. diff --git a/CHANGES/1169.packaging.rst b/CHANGES/1169.packaging.rst deleted file mode 100644 index 456ac0f52..000000000 --- a/CHANGES/1169.packaging.rst +++ /dev/null @@ -1,6 +0,0 @@ -Switched to using the :mod:`propcache ` package for property caching --- by :user:`bdraco`. - -The :mod:`propcache ` package is derived from the property caching -code in :mod:`yarl` and has been broken out to avoid maintaining it for multiple -projects. diff --git a/CHANGES/1170.misc.rst b/CHANGES/1170.misc.rst deleted file mode 100644 index 9f27309d9..000000000 --- a/CHANGES/1170.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of converting :class:`~yarl.URL` to a string when no explicit port is set -- by :user:`bdraco`. diff --git a/CHANGES/1175.misc.rst b/CHANGES/1175.misc.rst deleted file mode 100644 index 8d998cf1c..000000000 --- a/CHANGES/1175.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of the :py:meth:`~yarl.URL.origin` method -- by :user:`bdraco`. diff --git a/CHANGES/1176.misc.rst b/CHANGES/1176.misc.rst deleted file mode 100644 index 89c248699..000000000 --- a/CHANGES/1176.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of encoding hosts -- by :user:`bdraco`. diff --git a/CHANGES/860.contrib.rst b/CHANGES/860.contrib.rst deleted file mode 100644 index 99ebba6ba..000000000 --- a/CHANGES/860.contrib.rst +++ /dev/null @@ -1,3 +0,0 @@ -Started testing with Hypothesis -- by :user:`webknjaz` and :user:`bdraco`. - -Special thanks to :user:`Zac-HD` for helping us get started with this framework. diff --git a/yarl/__init__.py b/yarl/__init__.py index 5b7611cf7..d9703013c 100644 --- a/yarl/__init__.py +++ b/yarl/__init__.py @@ -8,7 +8,7 @@ cache_info, ) -__version__ = "1.13.2.dev0" +__version__ = "1.14.0" __all__ = ( "URL",