Skip to content

Commit

Permalink
Preparing for 4.0.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjw296 committed Mar 11, 2020
1 parent d06f48d commit 87546bf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
4.0.2
-----

- Issue #39915: Ensure :attr:`unittest.mock.AsyncMock.await_args_list` has
call objects in the order of awaited arguments instead of using
:attr:`unittest.mock.Mock.call_args` which has the last value of the call.
Patch by Karthikeyan Singaravelan.

4.0.1
-----

Expand Down
4 changes: 0 additions & 4 deletions NEWS.d/2020-03-10-19-38-47.bpo-39915.CjPeiY.rst

This file was deleted.

2 changes: 1 addition & 1 deletion mock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import mock.mock as _mock
from mock.mock import *

__version__ = '4.0.1'
__version__ = '4.0.2'
version_info = tuple(int(p) for p in
re.match(r'(\d+).(\d+).(\d+)', __version__).groups())

Expand Down

0 comments on commit 87546bf

Please sign in to comment.