Skip to content

Commit

Permalink
Bump hypothesis-python version to 6.46.8 and update changelog
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
DRMacIver committed May 25, 2022
1 parent ef5ec3c commit 327d946
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
11 changes: 0 additions & 11 deletions hypothesis-python/RELEASE.rst

This file was deleted.

16 changes: 16 additions & 0 deletions hypothesis-python/docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,22 @@ Hypothesis 6.x

.. include:: ../RELEASE.rst

.. _v6.46.8:

-------------------
6.46.8 - 2022-05-25
-------------------

This patch by Phillip Schanely makes changes to the
:func:`~hypothesis.strategies.floats` strategy when ``min_value`` or ``max_value`` is
present.
Hypothesis will now be capable of generating every representable value in the bounds.
You may notice that hypothesis is more likely to test values near boundaries, and values
that are very close to zero.

These changes also support future integrations with symbolic execution tools and fuzzers
(:issue:`3086`).

.. _v6.46.7:

-------------------
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.

__version_info__ = (6, 46, 7)
__version_info__ = (6, 46, 8)
__version__ = ".".join(map(str, __version_info__))

0 comments on commit 327d946

Please sign in to comment.