Skip to content

Commit 5b9f95a

Browse files
committed
Bump hypothesis-python version to 3.86.0 and update changelog
[skip ci]
1 parent 5e80f1c commit 5b9f95a

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

hypothesis-python/RELEASE.rst

-11
This file was deleted.

hypothesis-python/docs/changes.rst

+16
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,22 @@ 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.86.0:
25+
26+
-------------------
27+
3.86.0 - 2019-01-03
28+
-------------------
29+
30+
This release ensures that infinite numbers are never generated by
31+
:func:`~hypothesis.strategies.floats` with ``allow_infinity=False``,
32+
which could previously happen in some cases where one bound was also
33+
provided.
34+
35+
The trivially inconsistent ``min_value=inf, allow_infinity=False`` now
36+
raises an InvalidArgumentError, as does the inverse with ``max_value``.
37+
You can still use :func:`just(inf) <hypothesis.strategies.just>` to
38+
generate ``inf`` without violating other constraints.
39+
2440
.. _v3.85.3:
2541

2642
-------------------

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, 85, 3)
20+
__version_info__ = (3, 86, 0)
2121
__version__ = ".".join(map(str, __version_info__))

0 commit comments

Comments
 (0)