summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Withers <chris@simplistix.co.uk>2019-05-07 22:17:29 +0100
committerChris Withers <chris@simplistix.co.uk>2019-05-07 22:17:29 +0100
commite0180b98d0e07e895a3f699b7e9afcac4716fc03 (patch)
tree95bdace6e0f38b676ca47a5e4b9992155e0edc7d
parente8891607ee6917784b802e905c4aafcc8cdc99e8 (diff)
downloadmock-e0180b98d0e07e895a3f699b7e9afcac4716fc03.tar.gz
Preparing for 3.0.5 release.
-rw-r--r--CHANGELOG.rst6
-rw-r--r--NEWS.d/2019-01-11-17-09-15.bpo-31855.PlhfsX.rst2
-rw-r--r--mock/mock.py2
3 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index f696a85..919648b 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,3 +1,9 @@
+3.0.5
+-----
+
+- Issue #31855: :func:`unittest.mock.mock_open` results now respects the
+ argument of read([size]). Patch contributed by Rémi Lapeyre.
+
3.0.4
-----
diff --git a/NEWS.d/2019-01-11-17-09-15.bpo-31855.PlhfsX.rst b/NEWS.d/2019-01-11-17-09-15.bpo-31855.PlhfsX.rst
deleted file mode 100644
index 0da9c49..0000000
--- a/NEWS.d/2019-01-11-17-09-15.bpo-31855.PlhfsX.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-:func:`unittest.mock.mock_open` results now respects the argument of read([size]).
-Patch contributed by Rémi Lapeyre.
diff --git a/mock/mock.py b/mock/mock.py
index 2d4f805..2d39253 100644
--- a/mock/mock.py
+++ b/mock/mock.py
@@ -69,7 +69,7 @@ from unittest.util import safe_repr
import six
from six import wraps
-__version__ = '3.0.4'
+__version__ = '3.0.5'
version_info = tuple(int(p) for p in __version__.split('.'))
import mock