From d3baf4e9889f8197b7b3626afd375d7403e85d70 Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Sat, 18 Jan 2025 00:47:34 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.124.1 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 660e068d04..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,3 +0,0 @@ -RELEASE_TYPE: patch - -:ref:`fuzz_one_input ` is now implemented using an :ref:`alternative backend `. This brings the interpretation of the fuzzer-provided bytestring closer to the fuzzer mutations, allowing the mutations to work more reliably. We hope to use this backend functionality to improve fuzzing integration (see e.g. https://github.com/google/atheris/issues/20) in the future! diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 458b97fa0f..98e60b8937 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,14 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.124.1: + +-------------------- +6.124.1 - 2025-01-18 +-------------------- + +:ref:`fuzz_one_input ` is now implemented using an :ref:`alternative backend `. This brings the interpretation of the fuzzer-provided bytestring closer to the fuzzer mutations, allowing the mutations to work more reliably. We hope to use this backend functionality to improve fuzzing integration (see e.g. https://github.com/google/atheris/issues/20) in the future! + .. _v6.124.0: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index d3493059de..5b01ddaaa6 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, 124, 0) +__version_info__ = (6, 124, 1) __version__ = ".".join(map(str, __version_info__))