Skip to content

Commit 8431a80

Browse files
committed
Bump hypothesis-python version to 3.88.3 and update changelog
[skip ci]
1 parent 767c63e commit 8431a80

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

hypothesis-python/RELEASE.rst

-6
This file was deleted.

hypothesis-python/docs/changes.rst

+11
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@ Hypothesis APIs come in three flavours:
2121
You should generally assume that an API is internal unless you have specific
2222
information to the contrary.
2323

24+
.. _v3.88.3:
25+
26+
-------------------
27+
3.88.3 - 2019-01-11
28+
-------------------
29+
30+
This changes the order that the shrinker tries certain operations in its "emergency" phase which runs late in the process.
31+
The new order should be better at avoiding long stalls where the shrinker is failing to make progress,
32+
which may be helpful if you have difficult to shrink test cases.
33+
However this will not be noticeable in the vast majority of use cases.
34+
2435
.. _v3.88.2:
2536

2637
-------------------

hypothesis-python/src/hypothesis/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717

1818
from __future__ import absolute_import, division, print_function
1919

20-
__version_info__ = (3, 88, 2)
20+
__version_info__ = (3, 88, 3)
2121
__version__ = ".".join(map(str, __version_info__))

0 commit comments

Comments
 (0)