Skip to content

Commit ba4d428

Browse files
authored
Release 6.6.1 (#1219)
1 parent 626d96c commit ba4d428

File tree

5 files changed

+34
-5
lines changed

5 files changed

+34
-5
lines changed

CHANGES.rst

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

1515
.. towncrier release notes start
1616
17+
6.6.1
18+
=====
19+
20+
*(2025-06-28)*
21+
22+
23+
Bug fixes
24+
---------
25+
26+
- If :meth:`multidict.MultiDict.extend`, :meth:`multidict.MultiDict.merge`, or :meth:`multidict.MultiDict.update` raises an exception, now the multidict internal state is correctly restored.
27+
Patch by :user:`asvetlov`.
28+
29+
*Related issues and pull requests on GitHub:*
30+
:issue:`1215`.
31+
32+
33+
Contributor-facing changes
34+
--------------------------
35+
36+
- Fixed ``setuptools`` deprecation warning about the license specification -- by :user:`asvetlov`.
37+
38+
*Related issues and pull requests on GitHub:*
39+
:issue:`1216`.
40+
41+
- Fix compiler warnings and convert them to errors -- by :user:`asvetlov`.
42+
43+
*Related issues and pull requests on GitHub:*
44+
:issue:`1217`.
45+
46+
47+
----
48+
49+
1750
6.6.0
1851
=====
1952

CHANGES/1215.bugfix.rst

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

CHANGES/1216.contrib.rst

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

CHANGES/1217.contrib.rst

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

multidict/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"getversion",
2323
)
2424

25-
__version__ = "6.6.1.dev0"
25+
__version__ = "6.6.1"
2626

2727

2828
if TYPE_CHECKING or not USE_EXTENSIONS:

0 commit comments

Comments
 (0)