Skip to content

Commit

Permalink
Bump hypothesis-python version to 4.24.5 and update changelog
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
DRMacIver committed Jun 23, 2019
1 parent 9b0583e commit 4130d2f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
9 changes: 0 additions & 9 deletions hypothesis-python/RELEASE.rst

This file was deleted.

14 changes: 14 additions & 0 deletions hypothesis-python/docs/changes.rst
Expand Up @@ -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:

-------------------
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/version.py
Expand Up @@ -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__))

0 comments on commit 4130d2f

Please sign in to comment.