From 5b62d85b63e9ce1ef97aec8c872d186ea191afd3 Mon Sep 17 00:00:00 2001 From: "Travis CI on behalf of David R. MacIver" Date: Mon, 31 Dec 2018 11:22:54 +0000 Subject: [PATCH] Bump hypothesis-python version to 3.85.2 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 b59e8737f1..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,5 +0,0 @@ -RELEASE_TYPE: patch - -This release makes a small change to the way the shrinker works. -You may see some improvements to speed of shrinking on especially large and hard to shrink examples, -but most users are unlikely to see much difference. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 50f20c3fcf..989a76973d 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.85.2: + +------------------- +3.85.2 - 2018-12-31 +------------------- + +This release makes a small change to the way the shrinker works. +You may see some improvements to speed of shrinking on especially large and hard to shrink examples, +but most users are unlikely to see much difference. + .. _v3.85.1: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index c2533a9ef0..d6c3518372 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, 85, 1) +__version_info__ = (3, 85, 2) __version__ = ".".join(map(str, __version_info__))