diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 21486af1f0..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,3 +0,0 @@ -RELEASE_TYPE: patch - -Hypothesis collects coverage information during the ``shrink`` and ``explain`` :ref:`phases ` in order to show a more informative error message. On 3.12+, this uses :mod:`sys.monitoring`. This patch improves the performance of coverage collection on 3.12+ by disabling events we don't need. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index b29fa4766b..63810190ff 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,14 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.119.3: + +-------------------- +6.119.3 - 2024-11-17 +-------------------- + +Hypothesis collects coverage information during the ``shrink`` and ``explain`` :ref:`phases ` in order to show a more informative error message. On 3.12+, this uses :mod:`sys.monitoring`. This patch improves the performance of coverage collection on 3.12+ by disabling events we don't need. + .. _v6.119.2: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 91cf703398..f6fbbb44d8 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, 119, 2) +__version_info__ = (6, 119, 3) __version__ = ".".join(map(str, __version_info__))