Skip to content

Commit

Permalink
Bump to 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jan 22, 2022
1 parent 3da0f79 commit a622632
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 10 deletions.
32 changes: 32 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,38 @@ Changelog

.. towncrier release notes start
6.0.0 (2022-01-22)
==================

Features
--------

- Use ``METH_FASTCALL`` where it makes sense.

``MultiDict.add()`` is 2.2 times faster now, ``CIMultiDict.add()`` is 1.5 times faster.
The same boost is applied to ``get*()``, ``setdefault()``, and ``pop*()`` methods. (:issue:`681`)


Bugfixes
--------

- Fixed type annotations for keys of multidict mapping classes. (:issue:`644`)
- Support Multidict[int] for pure-python version.
``__class_getitem__`` is already provided by C Extension, making it work with the pure-extension too. (:issue:`678`)


Deprecations and Removals
-------------------------

- Dropped Python 3.6 support (:issue:`680`)


Misc
----

- :issue:`659`


5.2.0 (2021-10-03)
=====================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/644.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/659.misc

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/678.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/680.removal

This file was deleted.

4 changes: 0 additions & 4 deletions CHANGES/681.feature

This file was deleted.

2 changes: 1 addition & 1 deletion multidict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"getversion",
)

__version__ = "5.2.0"
__version__ = "6.0.0"


try:
Expand Down

0 comments on commit a622632

Please sign in to comment.