Skip to content

Commit

Permalink
Release 1.9.11
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Sep 5, 2024
1 parent 7acfed4 commit 29d693d
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 7 deletions.
29 changes: 29 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,35 @@ Changelog

.. towncrier release notes start
1.9.11
======

*(2024-09-04)*


Bug fixes
---------

- Fixed a :exc:`TypeError` with ``MultiDictProxy`` and Python 3.8 -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`1084`, :issue:`1105`, :issue:`1107`.


Miscellaneous internal changes
------------------------------

- Improved performance of encoding hosts -- by :user:`bdraco`.

Previously, the library would unconditionally try to parse a host as an IP Address. The library now avoids trying to parse a host as an IP Address if the string is not in one of the formats described in :rfc:`3986#section-3.2.2`.

*Related issues and pull requests on GitHub:*
:issue:`1104`.


----


1.9.10
======

Expand Down
1 change: 0 additions & 1 deletion CHANGES/1084.bugfix.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/1104.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1105.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1107.bugfix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion yarl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from ._url import URL, cache_clear, cache_configure, cache_info

__version__ = "1.9.11.dev0"
__version__ = "1.9.11"

__all__ = ("URL", "cache_clear", "cache_configure", "cache_info")

0 comments on commit 29d693d

Please sign in to comment.