From 8fe82f2e31b99cee3f44c0a75fe70b261a4cccd4 Mon Sep 17 00:00:00 2001 From: "Travis CI on behalf of David R. MacIver" Date: Thu, 4 Jul 2019 09:32:40 +0000 Subject: [PATCH] Bump hypothesis-python version to 4.26.0 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 8 -------- hypothesis-python/docs/changes.rst | 13 +++++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 14 insertions(+), 9 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 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__))