From 54ad98512e8953ebf8cf7f01eb4163e4720ba126 Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Tue, 18 Feb 2025 08:15:27 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.126.0 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 5 ----- hypothesis-python/docs/changes.rst | 10 ++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 11 insertions(+), 6 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 6cb9502f7e..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,5 +0,0 @@ -RELEASE_TYPE: minor - -The :doc:`Hypothesis database ` now supports a pub-sub interface to efficiently listen for changes in the database, via ``.add_listener`` and ``.remove_listener``. While all databases that ship with Hypothesis support this interface, implementing it is not required for custom database subclasses. Hypothesis will warn when trying to listen on a database without support. - -This feature is currently only used downstream in `hypofuzz `_. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 93406dfcd5..c675900520 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,16 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.126.0: + +-------------------- +6.126.0 - 2025-02-18 +-------------------- + +The :doc:`Hypothesis database ` now supports a pub-sub interface to efficiently listen for changes in the database, via ``.add_listener`` and ``.remove_listener``. While all databases that ship with Hypothesis support this interface, implementing it is not required for custom database subclasses. Hypothesis will warn when trying to listen on a database without support. + +This feature is currently only used downstream in `hypofuzz `_. + .. _v6.125.3: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 3e99a5ec3c..9f283c5f5e 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, 125, 3) +__version_info__ = (6, 126, 0) __version__ = ".".join(map(str, __version_info__))