From 3761dc703e86971d6440d2e31fa37b9c7888ae6c Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Sat, 11 Sep 2021 08:06:53 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.21.0 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 526478b44e..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,6 +0,0 @@ -RELEASE_TYPE: minor - -This release introduces strategies for array/tensor libraries adopting the -`Array API standard `__ (:issue:`3037`). -They are available in :ref:`the hypothesis.extra.array_api extra `, -and work much like the existing :doc:`strategies for NumPy `. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 67ad18e7fc..ebc2c52dad 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,17 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.21.0: + +------------------- +6.21.0 - 2021-09-11 +------------------- + +This release introduces strategies for array/tensor libraries adopting the +`Array API standard `__ (:issue:`3037`). +They are available in :ref:`the hypothesis.extra.array_api extra `, +and work much like the existing :doc:`strategies for NumPy `. + .. _v6.20.1: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 0f8fa40eda..8893294a26 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -13,5 +13,5 @@ # # END HEADER -__version_info__ = (6, 20, 1) +__version_info__ = (6, 21, 0) __version__ = ".".join(map(str, __version_info__))