From 03fdf0655dc4e0189f8075fe3963ff33ea61383d Mon Sep 17 00:00:00 2001 From: "Travis CI on behalf of David R. MacIver" Date: Mon, 1 Oct 2018 03:16:27 +0000 Subject: [PATCH] Bump hypothesis-python version to 3.74.0 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 12 ------------ hypothesis-python/docs/changes.rst | 17 +++++++++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 18 insertions(+), 13 deletions(-) delete mode 100644 hypothesis-python/RELEASE.rst diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index eb6d8fca7e..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,12 +0,0 @@ -RELEASE_TYPE: minor - -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. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 7fe8bcd7a7..48d8d4a031 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -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: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 1762168b62..c3a415f593 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -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__))