diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index a09e90423f..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,4 +0,0 @@ -RELEASE_TYPE: patch - -Explicitly cast :obj:`numpy.finfo.smallest_normal` to builtin `float` in -preparation for the :pypi:`numpy==2.0 ` release (:issue:`3950`) diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 2909c65489..753537bed8 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,15 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.100.2: + +-------------------- +6.100.2 - 2024-04-28 +-------------------- + +Explicitly cast :obj:`numpy.finfo.smallest_normal` to builtin `float` in +preparation for the :pypi:`numpy==2.0 ` release (:issue:`3950`) + .. _v6.100.1: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index be22825634..7d9f42de8e 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, 100, 1) +__version_info__ = (6, 100, 2) __version__ = ".".join(map(str, __version_info__))