From b4a064f0d922c04a53cc8a8b498260875110c2a4 Mon Sep 17 00:00:00 2001 From: "Travis CI on behalf of David R. MacIver" Date: Tue, 18 Sep 2018 13:45:26 +0000 Subject: [PATCH] Bump hypothesis-python version to 3.71.10 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 4 ---- hypothesis-python/docs/changes.rst | 9 +++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 10 insertions(+), 5 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 2c4a50cb50..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,4 +0,0 @@ -RELEASE_TYPE: patch - -This patch allows :func:`~hypothesis.strategies.from_type` to handle the -empty tuple type, :obj:`typing.Tuple[()] `. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 24c2c060d8..aa7019a108 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -21,6 +21,15 @@ Hypothesis APIs come in three flavours: You should generally assume that an API is internal unless you have specific information to the contrary. +.. _v3.71.10: + +-------------------- +3.71.10 - 2018-09-18 +-------------------- + +This patch allows :func:`~hypothesis.strategies.from_type` to handle the +empty tuple type, :obj:`typing.Tuple[()] `. + .. _v3.71.9: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 996bf58f0b..697b84a949 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, 71, 9) +__version_info__ = (3, 71, 10) __version__ = '.'.join(map(str, __version_info__))