Skip to content

Commit

Permalink
Release 1.15.3 (#1282)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Oct 15, 2024
1 parent 5bbbe2e commit 099b4ef
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 6 deletions.
38 changes: 38 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,44 @@ Changelog

.. towncrier release notes start
1.15.3
======

*(2024-10-15)*


Bug fixes
---------

- Fixed :py:meth:`~yarl.URL.build` failing to validate paths must start with a ``/`` when passing ``authority`` -- by :user:`bdraco`.

The validation only worked correctly when passing ``host``.

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


Removals and backward incompatible breaking changes
---------------------------------------------------

- Removed support for Python 3.8 as it has reached end of life -- by :user:`bdraco`.

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


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

- Improved performance of constructing :class:`~yarl.URL` when the net location is only the host -- by :user:`bdraco`.

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


----


1.15.2
======

Expand Down
1 change: 0 additions & 1 deletion CHANGES/1203.breaking.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/1265.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1271.misc.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.15.3.dev0"
__version__ = "1.15.3"

__all__ = (
"URL",
Expand Down

0 comments on commit 099b4ef

Please sign in to comment.