Skip to content

Commit 4ab9b12

Browse files
authored
Release 1.17.2 (#1419)
1 parent 37b04d2 commit 4ab9b12

File tree

9 files changed

+57
-12
lines changed

9 files changed

+57
-12
lines changed

CHANGES.rst

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,62 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
1.17.2
18+
======
19+
20+
*(2024-11-17)*
21+
22+
23+
Bug fixes
24+
---------
25+
26+
- Stopped implicitly allowing the use of Cython pre-release versions when
27+
building the distribution package -- by :user:`ajsanchezsanz` and
28+
:user:`markgreene74`.
29+
30+
*Related issues and pull requests on GitHub:*
31+
:issue:`1411`, :issue:`1412`.
32+
33+
- Fixed a bug causing :attr:`~yarl.URL.port` to return the default port when the given port was zero
34+
-- by :user:`gmacon`.
35+
36+
*Related issues and pull requests on GitHub:*
37+
:issue:`1413`.
38+
39+
40+
Features
41+
--------
42+
43+
- Make error messages include details of incorrect type when ``port`` is not int in :py:meth:`~yarl.URL.build`.
44+
-- by :user:`Cycloctane`.
45+
46+
*Related issues and pull requests on GitHub:*
47+
:issue:`1414`.
48+
49+
50+
Packaging updates and notes for downstreams
51+
-------------------------------------------
52+
53+
- Stopped implicitly allowing the use of Cython pre-release versions when
54+
building the distribution package -- by :user:`ajsanchezsanz` and
55+
:user:`markgreene74`.
56+
57+
*Related issues and pull requests on GitHub:*
58+
:issue:`1411`, :issue:`1412`.
59+
60+
61+
Miscellaneous internal changes
62+
------------------------------
63+
64+
- Improved performance of the :py:meth:`~yarl.URL.joinpath` method -- by :user:`bdraco`.
65+
66+
*Related issues and pull requests on GitHub:*
67+
:issue:`1418`.
68+
69+
70+
----
71+
72+
1773
1.17.1
1874
======
1975

CHANGES/1411.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/1411.packaging.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/1412.bugfix.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGES/1412.packaging.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/1413.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

CHANGES/1414.feature.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

CHANGES/1418.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

yarl/__init__.py

Lines changed: 1 addition & 1 deletion
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.17.2.dev0"
4+
__version__ = "1.17.2"
55

66
__all__ = (
77
"URL",

0 commit comments

Comments
 (0)