Skip to content

Commit

Permalink
Add changelog, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Aug 13, 2017
1 parent 996058a commit ae1a38c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions docs/changes.rst
Expand Up @@ -21,6 +21,21 @@ Hypothesis APIs come in three flavours:
You should generally assume that an API is internal unless you have specific
information to the contrary.

-------------------
3.17.1 - 2017-08-13
-------------------

This is a bugfix release for the :func:`~hypothesis.strategies.fractions`
and :func:`~hypothesis.strategies.decimals` strategies.

* Fixed-point decimals would often fail with healthcheck errors due to changes
in the underlying distribution of integers. Calculating the correct bound
when none is given fixes :issue:`725`.
* Non-integer bounds for fractions and decimals were incorrectly handled
when both bounds lay between two integers. (:issue:`739`)
* If the ``max_denominator`` argument to fractions is given but there is no
valid output between the bounds, InvalidArgument is raised.

-------------------
3.17.0 - 2017-08-07
-------------------
Expand Down
2 changes: 1 addition & 1 deletion src/hypothesis/version.py
Expand Up @@ -17,5 +17,5 @@

from __future__ import division, print_function, absolute_import

__version_info__ = (3, 17, 0)
__version_info__ = (3, 17, 1)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit ae1a38c

Please sign in to comment.