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__))