Skip to content

Commit

Permalink
Release 1.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Nov 21, 2024
1 parent b7bdfd5 commit 536b8ad
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 5 deletions.
36 changes: 36 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,42 @@ Changelog

.. towncrier release notes start
1.18.0
======

*(2024-11-21)*


Features
--------

- Added ``keep_query`` and ``keep_fragment`` flags in the :py:meth:`yarl.URL.with_path`, :py:meth:`yarl.URL.with_name` and :py:meth:`yarl.URL.with_suffix` methods, allowing users to optionally retain the query string and fragment in the resulting URL when replacing the path -- by :user:`paul-nameless`.

*Related issues and pull requests on GitHub:*
:issue:`111`, :issue:`1421`.


Contributor-facing changes
--------------------------

- Started running downstream ``aiohttp`` tests in CI -- by :user:`Cycloctane`.

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


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

- Improved performance of converting :class:`~yarl.URL` to a string -- by :user:`bdraco`.

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


----


1.17.2
======

Expand Down
1 change: 0 additions & 1 deletion CHANGES/111.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1415.contrib.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1421.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1422.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
@@ -1,7 +1,7 @@
from ._query import Query, QueryVariable, SimpleQuery
from ._url import URL, cache_clear, cache_configure, cache_info

__version__ = "1.18.0.dev0"
__version__ = "1.18.0"

__all__ = (
"URL",
Expand Down

0 comments on commit 536b8ad

Please sign in to comment.