From 4130d2ff165f63269ff57092b5093ac4699a6c7e Mon Sep 17 00:00:00 2001 From: "Travis CI on behalf of David R. MacIver" Date: Sun, 23 Jun 2019 15:34:24 +0000 Subject: [PATCH] Bump hypothesis-python version to 4.24.5 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 9 --------- hypothesis-python/docs/changes.rst | 14 ++++++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 15 insertions(+), 10 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 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__))