From 73dffac010a9c08f4b368411bb54b04d3f0cb0f3 Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Wed, 15 Jun 2022 09:25:19 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.47.3 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 6 ------ hypothesis-python/docs/changes.rst | 11 +++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) delete mode 100644 hypothesis-python/RELEASE.rst diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 4a777042d9..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,6 +0,0 @@ -RELEASE_TYPE: patch - -This patch makes the :obj:`~hypothesis.HealthCheck.too_slow` health check more -consistent with long :obj:`~hypothesis.settings.deadline` tests (:issue:`3367`) -and fixes an install issue under :pypi:`pipenv` which was introduced in -:ref:`Hypothesis 6.47.2 ` (:issue:`3374`). diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 4c25592997..03476705f7 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,17 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.47.3: + +------------------- +6.47.3 - 2022-06-15 +------------------- + +This patch makes the :obj:`~hypothesis.HealthCheck.too_slow` health check more +consistent with long :obj:`~hypothesis.settings.deadline` tests (:issue:`3367`) +and fixes an install issue under :pypi:`pipenv` which was introduced in +:ref:`Hypothesis 6.47.2 ` (:issue:`3374`). + .. _v6.47.2: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index a456e71e9e..8908d442e3 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, 47, 2) +__version_info__ = (6, 47, 3) __version__ = ".".join(map(str, __version_info__))