Skip to content

Commit 134d4cd

Browse files
committed
Release 1.11.1
1 parent fa321e5 commit 134d4cd

File tree

7 files changed

+42
-6
lines changed

7 files changed

+42
-6
lines changed

CHANGES.rst

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

1515
.. towncrier release notes start
1616
17+
1.11.1
18+
======
19+
20+
*(2024-09-09)*
21+
22+
23+
Bug fixes
24+
---------
25+
26+
- Allowed scheme replacement for relative URLs if the scheme does not require a host -- by :user:`bdraco`.
27+
28+
*Related issues and pull requests on GitHub:*
29+
:issue:`280`, :issue:`1138`.
30+
31+
- Allowed empty host for URL schemes other than the special schemes listed in the WHATWG URL spec -- by :user:`bdraco`.
32+
33+
*Related issues and pull requests on GitHub:*
34+
:issue:`1136`.
35+
36+
37+
Features
38+
--------
39+
40+
- Loosened restriction on integers as query string values to allow classes that implement ``__int__`` -- by :user:`bdraco`.
41+
42+
*Related issues and pull requests on GitHub:*
43+
:issue:`1139`.
44+
45+
46+
Miscellaneous internal changes
47+
------------------------------
48+
49+
- Improved performance of normalizing paths -- by :user:`bdraco`.
50+
51+
*Related issues and pull requests on GitHub:*
52+
:issue:`1137`.
53+
54+
55+
----
56+
57+
1758
1.11.0
1859
======
1960

CHANGES/1136.bugfix.rst

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

CHANGES/1137.misc.rst

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

CHANGES/1138.bugfix.rst

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

CHANGES/1139.feature.rst

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

CHANGES/280.bugfix.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
@@ -8,7 +8,7 @@
88
cache_info,
99
)
1010

11-
__version__ = "1.11.1.dev0"
11+
__version__ = "1.11.1"
1212

1313
__all__ = (
1414
"URL",

0 commit comments

Comments
 (0)