Skip to content

Commit

Permalink
Bump hypothesis-python version to 3.74.0 and update changelog
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
DRMacIver committed Oct 1, 2018
1 parent 7668f09 commit 03fdf06
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 13 deletions.
12 changes: 0 additions & 12 deletions hypothesis-python/RELEASE.rst

This file was deleted.

17 changes: 17 additions & 0 deletions hypothesis-python/docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,23 @@ Hypothesis APIs come in three flavours:
You should generally assume that an API is internal unless you have specific
information to the contrary.

.. _v3.74.0:

-------------------
3.74.0 - 2018-10-01
-------------------

This release checks that the value of the
:attr:`~hypothesis.settings.print_blob` setting is a
:class:`~hypothesis.PrintSettings` instance.

Being able to specify a boolean value was not intended, and is now deprecated.
In addition, specifying ``True`` will now cause the blob to always be printed,
instead of causing it to be suppressed.

Specifying any value that is not a :class:`~hypothesis.PrintSettings`
or a boolean is now an error.

.. _v3.73.5:

-------------------
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 @@ -17,5 +17,5 @@

from __future__ import division, print_function, absolute_import

__version_info__ = (3, 73, 5)
__version_info__ = (3, 74, 0)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit 03fdf06

Please sign in to comment.