diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 5e19be7653..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,9 +0,0 @@ -RELEASE_TYPE: minor - -Hypothesis now reports some failing inputs by showing the call which constructed -an object, rather than the repr of the object. This can be helpful when the default -repr does not include all relevant details, and will unlock further improvements -in a future version. - -For now, we capture calls made via :func:`~hypothesis.strategies.builds`, and via -:ref:`SearchStrategy.map() `. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 2c0e8fe0aa..4768c89a97 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,20 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.65.0: + +------------------- +6.65.0 - 2023-01-24 +------------------- + +Hypothesis now reports some failing inputs by showing the call which constructed +an object, rather than the repr of the object. This can be helpful when the default +repr does not include all relevant details, and will unlock further improvements +in a future version. + +For now, we capture calls made via :func:`~hypothesis.strategies.builds`, and via +:ref:`SearchStrategy.map() `. + .. _v6.64.0: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 611238265b..9009685f98 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, 64, 0) +__version_info__ = (6, 65, 0) __version__ = ".".join(map(str, __version_info__))