From 0ca8df88715521aa1aff6bfe0ece463b74de43f3 Mon Sep 17 00:00:00 2001 From: "Travis CI on behalf of David R. MacIver" Date: Fri, 4 Jan 2019 09:11:49 +0000 Subject: [PATCH] Bump hypothesis-python version to 3.86.4 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 56a07b2dc3..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,4 +0,0 @@ -RELEASE_TYPE: patch - -This release changes the order that the shrinker tries to delete data in. -For large and slow tests this may significantly improve the performance of shrinking. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 86a9c61794..dd17aec106 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.86.4: + +------------------- +3.86.4 - 2019-01-04 +------------------- + +This release changes the order that the shrinker tries to delete data in. +For large and slow tests this may significantly improve the performance of shrinking. + .. _v3.86.3: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 1420d8b06b..443effde3b 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -17,5 +17,5 @@ from __future__ import absolute_import, division, print_function -__version_info__ = (3, 86, 3) +__version_info__ = (3, 86, 4) __version__ = ".".join(map(str, __version_info__))