Skip to content

Commit 64d13b5

Browse files
committed
Bump to 4.7.5
1 parent 8644803 commit 64d13b5

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

CHANGES.rst

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

1515
.. towncrier release notes start
1616
17+
4.7.5 (2020-02-21)
18+
==================
19+
20+
Bugfixes
21+
--------
22+
23+
- Fixed creating and updating of MultiDict from a sequence of pairs and keyword arguments. Previously passing a list argument modified it inplace, and other sequences caused an error.
24+
`#457 <https://github.com/aio-libs/multidict/issues/457>`_
25+
- Fixed comparing with mapping: an exception raised in the `__len__` method caused raising a SyntaxError.
26+
`#459 <https://github.com/aio-libs/multidict/issues/459>`_
27+
- Fixed comparing with mapping: all exceptions raised in the `__getitem__` method were silenced.
28+
`#460 <https://github.com/aio-libs/multidict/issues/460>`_
29+
30+
31+
----
32+
33+
1734
4.7.4 (2020-01-11)
1835
==================
1936

CHANGES/457.bugfix

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

CHANGES/459.bugfix

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

CHANGES/460.bugfix

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
@@ -20,7 +20,7 @@
2020
"getversion"
2121
)
2222

23-
__version__ = "4.7.4"
23+
__version__ = "4.7.5"
2424

2525

2626
try:

0 commit comments

Comments
 (0)