diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 321cde5465..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,8 +0,0 @@ -RELEASE_TYPE: minor - -This release significantly improves the performance of drawing unique collections whose -elements are drawn from :func:`~hypothesis.strategies.sampled_from` strategies. - -As a side effect, this detects an error condition that would previously have -passed silently: When the ``min_size`` argument on a collection with distinct elements -is greater than the number of elements being sampled, this will now raise an error. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 30398e4b9c..c4702ce188 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -21,6 +21,19 @@ Hypothesis APIs come in three flavours: You should generally assume that an API is internal unless you have specific information to the contrary. +.. _v4.26.0: + +------------------- +4.26.0 - 2019-07-04 +------------------- + +This release significantly improves the performance of drawing unique collections whose +elements are drawn from :func:`~hypothesis.strategies.sampled_from` strategies. + +As a side effect, this detects an error condition that would previously have +passed silently: When the ``min_size`` argument on a collection with distinct elements +is greater than the number of elements being sampled, this will now raise an error. + .. _v4.25.1: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index f580ed282b..075675a61b 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__ = (4, 25, 1) +__version_info__ = (4, 26, 0) __version__ = ".".join(map(str, __version_info__))