Skip to content

Commit a622632

Browse files
committed
Bump to 6.0.0
1 parent 3da0f79 commit a622632

7 files changed

Lines changed: 33 additions & 10 deletions

File tree

CHANGES.rst

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

1515
.. towncrier release notes start
1616
17+
6.0.0 (2022-01-22)
18+
==================
19+
20+
Features
21+
--------
22+
23+
- Use ``METH_FASTCALL`` where it makes sense.
24+
25+
``MultiDict.add()`` is 2.2 times faster now, ``CIMultiDict.add()`` is 1.5 times faster.
26+
The same boost is applied to ``get*()``, ``setdefault()``, and ``pop*()`` methods. (:issue:`681`)
27+
28+
29+
Bugfixes
30+
--------
31+
32+
- Fixed type annotations for keys of multidict mapping classes. (:issue:`644`)
33+
- Support Multidict[int] for pure-python version.
34+
``__class_getitem__`` is already provided by C Extension, making it work with the pure-extension too. (:issue:`678`)
35+
36+
37+
Deprecations and Removals
38+
-------------------------
39+
40+
- Dropped Python 3.6 support (:issue:`680`)
41+
42+
43+
Misc
44+
----
45+
46+
- :issue:`659`
47+
48+
1749
5.2.0 (2021-10-03)
1850
=====================
1951

CHANGES/644.bugfix.rst

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

CHANGES/659.misc

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

CHANGES/678.bugfix

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

CHANGES/680.removal

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

CHANGES/681.feature

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

multidict/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"getversion",
2121
)
2222

23-
__version__ = "5.2.0"
23+
__version__ = "6.0.0"
2424

2525

2626
try:

0 commit comments

Comments
 (0)