Preparing for 5.0.1 release.
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 386fb4c..790285e 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,3 +1,20 @@
+5.0.1
+-----
+
+- gh-100740: Fix ``unittest.mock.Mock`` not respecting the spec for
+  attribute names prefixed with ``assert``.
+
+- gh-100690: ``Mock`` objects which are not unsafe will now raise an
+  ``AttributeError`` when accessing an attribute that matches the name of an
+  assertion but without the prefix ``assert_``, e.g. accessing
+  ``called_once`` instead of ``assert_called_once``. This is in addition to
+  this already happening for accessing attributes with prefixes ``assert``,
+  ``assret``, ``asert``, ``aseert``, and ``assrt``.
+
+- gh-96127: ``inspect.signature`` was raising ``TypeError`` on call with
+  mock objects. Now it correctly returns ``(*args, **kwargs)`` as infered
+  signature.
+
 5.0.0
 -----
 
diff --git a/NEWS.d/2022-08-27-10-35-50.gh-issue-96127.8RdLre.rst b/NEWS.d/2022-08-27-10-35-50.gh-issue-96127.8RdLre.rst
deleted file mode 100644
index 79edd8f..0000000
--- a/NEWS.d/2022-08-27-10-35-50.gh-issue-96127.8RdLre.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-``inspect.signature`` was raising ``TypeError`` on call with mock objects.
-Now it correctly returns ``(*args, **kwargs)`` as infered signature.
diff --git a/NEWS.d/2023-01-02-16-59-49.gh-issue-100690.2EgWPS.rst b/NEWS.d/2023-01-02-16-59-49.gh-issue-100690.2EgWPS.rst
deleted file mode 100644
index 3796772..0000000
--- a/NEWS.d/2023-01-02-16-59-49.gh-issue-100690.2EgWPS.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-``Mock`` objects which are not unsafe will now raise an
-``AttributeError`` when accessing an attribute that matches the name
-of an assertion but without the prefix ``assert_``, e.g. accessing
-``called_once`` instead of ``assert_called_once``.
-This is in addition to this already happening for accessing attributes
-with prefixes ``assert``, ``assret``, ``asert``, ``aseert``,
-and ``assrt``.
diff --git a/NEWS.d/2023-01-04-09-53-38.gh-issue-100740.-j5UjI.rst b/NEWS.d/2023-01-04-09-53-38.gh-issue-100740.-j5UjI.rst
deleted file mode 100644
index 4753e7b..0000000
--- a/NEWS.d/2023-01-04-09-53-38.gh-issue-100740.-j5UjI.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fix ``unittest.mock.Mock`` not respecting the spec for attribute names prefixed with ``assert``.
diff --git a/mock/__init__.py b/mock/__init__.py
index 0e72ce6..84d85df 100644
--- a/mock/__init__.py
+++ b/mock/__init__.py
@@ -7,7 +7,7 @@
 import mock.mock as _mock
 from mock.mock import *
 
-__version__ = '5.0.0'
+__version__ = '5.0.1'
 version_info = tuple(int(p) for p in
                      re.match(r'(\d+).(\d+).(\d+)', __version__).groups())