diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 9e0c5f6f2c..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,11 +0,0 @@ -RELEASE_TYPE: minor - -This release adds support for the Array API's `2022.12 release -`_ via the ``api_version`` argument in -:func:`~hypothesis.extra.array_api.make_strategies_namespace`. Concretely this -involves complex support in its existing strategies, plus an introduced -:func:`xps.complex_dtypes` strategy. - -Additionally this release now treats :ref:`hypothesis.extra.array_api -` as stable, meaning breaking changes should only happen with major -releases of Hypothesis. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 731b3c470a..b694837463 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,22 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.68.0: + +------------------- +6.68.0 - 2023-02-09 +------------------- + +This release adds support for the Array API's `2022.12 release +`_ via the ``api_version`` argument in +:func:`~hypothesis.extra.array_api.make_strategies_namespace`. Concretely this +involves complex support in its existing strategies, plus an introduced +:func:`xps.complex_dtypes` strategy. + +Additionally this release now treats :ref:`hypothesis.extra.array_api +` as stable, meaning breaking changes should only happen with major +releases of Hypothesis. + .. _v6.67.1: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 42826a1dad..3e6dfc90d3 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, 67, 1) +__version_info__ = (6, 68, 0) __version__ = ".".join(map(str, __version_info__))