From b83c7d43caaa68cd37cc114eb0b7106f557fb5c5 Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Wed, 20 Oct 2021 12:06:27 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.23.4 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 567d891614..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,4 +0,0 @@ -RELEASE_TYPE: patch - -This patch adds an error for when ``shapes`` in :func:`xps.arrays()` is not -passed as either a valid shape or strategy. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 89312f1c4f..bac8935428 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,15 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.23.4: + +------------------- +6.23.4 - 2021-10-20 +------------------- + +This patch adds an error for when ``shapes`` in :func:`xps.arrays()` is not +passed as either a valid shape or strategy. + .. _v6.23.3: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index c5ef7106a8..b96ba43e2e 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -13,5 +13,5 @@ # # END HEADER -__version_info__ = (6, 23, 3) +__version_info__ = (6, 23, 4) __version__ = ".".join(map(str, __version_info__))