diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 9cc7a6e4e9..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,5 +0,0 @@ -RELEASE_TYPE: patch - -This patch updates our vendored `list of top-level domains `__, -which is used by the provisional :func:`~hypothesis.provisional.domains` strategy, and fixes some -incorrect examples in the docs for :func:`~hypothesis.extra.numpy.mutually_broadcastable_shapes`. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 6032fa6a03..8128581fc2 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,16 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.56.2: + +------------------- +6.56.2 - 2022-10-10 +------------------- + +This patch updates our vendored `list of top-level domains `__, +which is used by the provisional :func:`~hypothesis.provisional.domains` strategy, and fixes some +incorrect examples in the docs for :func:`~hypothesis.extra.numpy.mutually_broadcastable_shapes`. + .. _v6.56.1: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 6a93aaac64..c4a4a1d82f 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, 56, 1) +__version_info__ = (6, 56, 2) __version__ = ".".join(map(str, __version_info__))