Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.14.0 #1180

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <propcache.api>` package for property caching
-- by :user:`bdraco`.

The :mod:`propcache <propcache.api>` 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
======

Expand Down
1 change: 0 additions & 1 deletion CHANGES/1168.misc.rst

This file was deleted.

6 changes: 0 additions & 6 deletions CHANGES/1169.packaging.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1170.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1175.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1176.misc.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/860.contrib.rst

This file was deleted.

2 changes: 1 addition & 1 deletion yarl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
cache_info,
)

__version__ = "1.13.2.dev0"
__version__ = "1.14.0"

__all__ = (
"URL",
Expand Down
Loading