From 576a3c782754b0ac62400d0fc195780062a1272c Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Thu, 29 Sep 2022 20:54:51 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.55.0 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 13 ------------- hypothesis-python/docs/changes.rst | 18 ++++++++++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 19 insertions(+), 14 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 a35bb9dc92..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,13 +0,0 @@ -RELEASE_TYPE: minor - -In preparation for `future versions of the Array API standard -`__, -:func:`~hypothesis.extra.array_api.make_strategies_namespace` now accepts an -optional ``api_version`` argument, which determines the version conformed to by -the returned strategies namespace. If ``None``, the version of the passed array -module ``xp`` is inferred. - -This release also introduces :func:`xps.real_dtypes`. This is currently -equivalent to the existing :func:`xps.numeric_dtypes` strategy, but exists -because the latter is expected to include complex numbers in the next version of -the standard. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 66ef7245e6..1d3e88effe 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,24 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.55.0: + +------------------- +6.55.0 - 2022-09-29 +------------------- + +In preparation for `future versions of the Array API standard +`__, +:func:`~hypothesis.extra.array_api.make_strategies_namespace` now accepts an +optional ``api_version`` argument, which determines the version conformed to by +the returned strategies namespace. If ``None``, the version of the passed array +module ``xp`` is inferred. + +This release also introduces :func:`xps.real_dtypes`. This is currently +equivalent to the existing :func:`xps.numeric_dtypes` strategy, but exists +because the latter is expected to include complex numbers in the next version of +the standard. + .. _v6.54.6: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 4402c97bb7..1ca106a177 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, 54, 6) +__version_info__ = (6, 55, 0) __version__ = ".".join(map(str, __version_info__))