Skip to content

Commit 2e8cd0d

Browse files
authored
Release 1.18.0 (#1429)
1 parent b7bdfd5 commit 2e8cd0d

File tree

6 files changed

+37
-5
lines changed

6 files changed

+37
-5
lines changed

CHANGES.rst

+36
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,42 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
1.18.0
18+
======
19+
20+
*(2024-11-21)*
21+
22+
23+
Features
24+
--------
25+
26+
- 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`.
27+
28+
*Related issues and pull requests on GitHub:*
29+
:issue:`111`, :issue:`1421`.
30+
31+
32+
Contributor-facing changes
33+
--------------------------
34+
35+
- Started running downstream ``aiohttp`` tests in CI -- by :user:`Cycloctane`.
36+
37+
*Related issues and pull requests on GitHub:*
38+
:issue:`1415`.
39+
40+
41+
Miscellaneous internal changes
42+
------------------------------
43+
44+
- Improved performance of converting :class:`~yarl.URL` to a string -- by :user:`bdraco`.
45+
46+
*Related issues and pull requests on GitHub:*
47+
:issue:`1422`.
48+
49+
50+
----
51+
52+
1753
1.17.2
1854
======
1955

CHANGES/111.feature.rst

-1
This file was deleted.

CHANGES/1415.contrib.rst

-1
This file was deleted.

CHANGES/1421.feature.rst

-1
This file was deleted.

CHANGES/1422.misc.rst

-1
This file was deleted.

yarl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from ._query import Query, QueryVariable, SimpleQuery
22
from ._url import URL, cache_clear, cache_configure, cache_info
33

4-
__version__ = "1.18.0.dev0"
4+
__version__ = "1.18.0"
55

66
__all__ = (
77
"URL",

0 commit comments

Comments
 (0)