diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index a112617154..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,9 +0,0 @@ -RELEASE_TYPE: patch - -This patch improves the development experience by simplifying the tracebacks -you will see when e.g. you have used the ``.map(...)`` method of a strategy -and the mapped function raises an exception. - -No new exceptions can be raised, nor existing exceptions change anything but -their traceback. We're simply using if-statements rather than exceptions for -control flow in a certain part of the internals! diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index dd7923aa86..8591358348 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -21,6 +21,20 @@ Hypothesis APIs come in three flavours: You should generally assume that an API is internal unless you have specific information to the contrary. +.. _v4.24.5: + +------------------- +4.24.5 - 2019-06-23 +------------------- + +This patch improves the development experience by simplifying the tracebacks +you will see when e.g. you have used the ``.map(...)`` method of a strategy +and the mapped function raises an exception. + +No new exceptions can be raised, nor existing exceptions change anything but +their traceback. We're simply using if-statements rather than exceptions for +control flow in a certain part of the internals! + .. _v4.24.4: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 1b9994d737..0c81e46b28 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -17,5 +17,5 @@ from __future__ import absolute_import, division, print_function -__version_info__ = (4, 24, 4) +__version_info__ = (4, 24, 5) __version__ = ".".join(map(str, __version_info__))