From a81d155f06c55f92513f2cd1fd5528c5026501ef Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Wed, 9 Oct 2024 03:50:59 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.113.0 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 4 ---- hypothesis-python/docs/changes.rst | 9 +++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 10 insertions(+), 5 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 4c41a07626..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,4 +0,0 @@ -RELEASE_TYPE: minor - -This release adds ``hypothesis.errors.BackendCannotProceed``, an unstable API -for use by :ref:`alternative-backends`. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 22edbe32e7..5e1fb3de67 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,15 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.113.0: + +-------------------- +6.113.0 - 2024-10-09 +-------------------- + +This release adds ``hypothesis.errors.BackendCannotProceed``, an unstable API +for use by :ref:`alternative-backends`. + .. _v6.112.5: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 11ed864977..f085acf288 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, 112, 5) +__version_info__ = (6, 113, 0) __version__ = ".".join(map(str, __version_info__))