diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 268101c29b..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,4 +0,0 @@ -RELEASE_TYPE: patch - -This patch addresses the issue of hypothesis potentially accessing -mocked ``time.perf_counter`` during test execution (:issue:`4051`). diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 6d388d57ba..e1157961e1 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,15 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.108.4: + +-------------------- +6.108.4 - 2024-07-22 +-------------------- + +This patch addresses the issue of hypothesis potentially accessing +mocked ``time.perf_counter`` during test execution (:issue:`4051`). + .. _v6.108.3: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 3ebda330a8..29e2144b92 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -8,5 +8,5 @@ # v. 2.0. If a copy of the MPL was not distributed with this file, You can # obtain one at https://mozilla.org/MPL/2.0/. -__version_info__ = (6, 108, 3) +__version_info__ = (6, 108, 4) __version__ = ".".join(map(str, __version_info__))