Preparing for 5.0.2 release.
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 790285e..3fa5887 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,3 +1,13 @@
+5.0.2
+-----
+
+- gh-102978: Fixes :func:`unittest.mock.patch` not enforcing function
+  signatures for methods decorated with ``@classmethod`` or
+  ``@staticmethod`` when patch is called with ``autospec=True``.
+
+- gh-103329: Regression tests for the behaviour of
+  ``unittest.mock.PropertyMock`` were added.
+
 5.0.1
 -----
 
diff --git a/NEWS.d/2023-04-03-23-44-34.gh-issue-102978.gy9eVk.rst b/NEWS.d/2023-04-03-23-44-34.gh-issue-102978.gy9eVk.rst
deleted file mode 100644
index df63af1..0000000
--- a/NEWS.d/2023-04-03-23-44-34.gh-issue-102978.gy9eVk.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Fixes :func:`unittest.mock.patch` not enforcing function signatures for methods
-decorated with ``@classmethod`` or ``@staticmethod`` when patch is called with
-``autospec=True``.
diff --git a/NEWS.d/2023-04-08-00-50-23.gh-issue-103329.M38tqF.rst b/NEWS.d/2023-04-08-00-50-23.gh-issue-103329.M38tqF.rst
deleted file mode 100644
index 79448ed..0000000
--- a/NEWS.d/2023-04-08-00-50-23.gh-issue-103329.M38tqF.rst
+++ /dev/null
@@ -1 +0,0 @@
-Regression tests for the behaviour of ``unittest.mock.PropertyMock`` were added.
diff --git a/mock/__init__.py b/mock/__init__.py
index 84d85df..85abb93 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.1'
+__version__ = '5.0.2'
 version_info = tuple(int(p) for p in
                      re.match(r'(\d+).(\d+).(\d+)', __version__).groups())