Skip to content

Commit c707925

Browse files
authored
Release 6.4.0 (#1137)
<img width="677" alt="Screenshot 2025-04-09 at 7 32 54 AM" src="https://github.com/user-attachments/assets/cb6e7d12-f46f-4787-8a12-e35922b9563b" /> - [x] prod test 1 - [x] prod test 2 - [x] aiohttp test
1 parent 78761cf commit c707925

File tree

6 files changed

+42
-9
lines changed

6 files changed

+42
-9
lines changed

CHANGES.rst

+41
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,47 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
6.4.0
18+
=====
19+
20+
*(2025-04-09)*
21+
22+
23+
Bug fixes
24+
---------
25+
26+
- Fixed a memory leak creating new :class:`~multidict.istr` objects -- by :user:`bdraco`.
27+
28+
The leak was introduced in 6.3.0
29+
30+
*Related issues and pull requests on GitHub:*
31+
:issue:`1133`.
32+
33+
- Fixed reference counting when calling :py:meth:`multidict.MultiDict.update` -- by :user:`bdraco`.
34+
35+
The leak was introduced in 4.4.0
36+
37+
*Related issues and pull requests on GitHub:*
38+
:issue:`1135`.
39+
40+
41+
Features
42+
--------
43+
44+
- Switched C Extension to use heap types and the module state.
45+
46+
*Related issues and pull requests on GitHub:*
47+
:issue:`1125`.
48+
49+
- Started building armv7l wheels -- by :user:`bdraco`.
50+
51+
*Related issues and pull requests on GitHub:*
52+
:issue:`1127`.
53+
54+
55+
----
56+
57+
1758
6.3.2
1859
=====
1960

CHANGES/1125.feature

-1
This file was deleted.

CHANGES/1127.feature.rst

-1
This file was deleted.

CHANGES/1133.bugfix.rst

-3
This file was deleted.

CHANGES/1135.bugfix.rst

-3
This file was deleted.

multidict/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"getversion",
2323
)
2424

25-
__version__ = "6.3.3.dev0"
25+
__version__ = "6.4.0"
2626

2727

2828
if TYPE_CHECKING or not USE_EXTENSIONS:

0 commit comments

Comments
 (0)