From 151dfaa02cb809d701fec87bd6038f1cac47e9ad Mon Sep 17 00:00:00 2001 From: "Travis CI on behalf of David R. MacIver" Date: Sat, 15 Sep 2018 01:33:26 +0000 Subject: [PATCH] Bump hypothesis-python version to 3.71.5 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 5 ----- hypothesis-python/docs/changes.rst | 10 ++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 11 insertions(+), 6 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 56ff0b9ddd..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,5 +0,0 @@ -RELEASE_TYPE: patch - -This patch fixes a ``DeprecationWarning`` added in Python 3.8 (:issue:`1576`). - -Thanks to tirkarthi for this contribution! diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 23df0dfb34..556a608991 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -21,6 +21,16 @@ 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.5: + +------------------- +3.71.5 - 2018-09-15 +------------------- + +This patch fixes a ``DeprecationWarning`` added in Python 3.8 (:issue:`1576`). + +Thanks to tirkarthi for this contribution! + .. _v3.71.4: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 730050216a..9847af9bea 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, 4) +__version_info__ = (3, 71, 5) __version__ = '.'.join(map(str, __version_info__))