From f68c0906615a1f3e0fab811ffc562d5576a27525 Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Wed, 8 Jan 2025 06:24:21 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.123.8 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 3 --- hypothesis-python/docs/changes.rst | 8 ++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 9 insertions(+), 4 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 750608ae82..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,3 +0,0 @@ -RELEASE_TYPE: patch - -The shrinker contains a pass aimed at integers which are required to sum to a value. This patch extends that pass to floats as well. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index a15d3f2791..647d00239f 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,14 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.123.8: + +-------------------- +6.123.8 - 2025-01-08 +-------------------- + +The shrinker contains a pass aimed at integers which are required to sum to a value. This patch extends that pass to floats as well. + .. _v6.123.7: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index d3a6440f82..63888c8b9e 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, 123, 7) +__version_info__ = (6, 123, 8) __version__ = ".".join(map(str, __version_info__))