From 16f5205a2050231851f55505b40d480beef62bfe Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Sun, 25 Feb 2024 10:31:22 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.98.12 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 916e8b9094..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,6 +0,0 @@ -RELEASE_TYPE: patch - -This patch implements filter-rewriting for most length filters on some -additional collection types (:issue:`3795`), and fixes several latent -bugs where unsatisfiable or partially-infeasible rewrites could trigger -internal errors. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 00d0fb3491..e4239a6330 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,17 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.98.12: + +-------------------- +6.98.12 - 2024-02-25 +-------------------- + +This patch implements filter-rewriting for most length filters on some +additional collection types (:issue:`3795`), and fixes several latent +bugs where unsatisfiable or partially-infeasible rewrites could trigger +internal errors. + .. _v6.98.11: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index da7f74708c..e986241037 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, 98, 11) +__version_info__ = (6, 98, 12) __version__ = ".".join(map(str, __version_info__))