Skip to content

Commit

Permalink
Bump to 4.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Feb 21, 2020
1 parent 8644803 commit 64d13b5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,23 @@ Changelog

.. towncrier release notes start
4.7.5 (2020-02-21)
==================

Bugfixes
--------

- 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.
`#457 <https://github.com/aio-libs/multidict/issues/457>`_
- Fixed comparing with mapping: an exception raised in the `__len__` method caused raising a SyntaxError.
`#459 <https://github.com/aio-libs/multidict/issues/459>`_
- Fixed comparing with mapping: all exceptions raised in the `__getitem__` method were silenced.
`#460 <https://github.com/aio-libs/multidict/issues/460>`_


----


4.7.4 (2020-01-11)
==================

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/459.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/460.bugfix

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__ = "4.7.4"
__version__ = "4.7.5"


try:
Expand Down

0 comments on commit 64d13b5

Please sign in to comment.