Skip to content

Commit

Permalink
Bump hypothesis-python version to 4.26.0 and update changelog
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
DRMacIver committed Jul 4, 2019
1 parent 589deb4 commit 8fe82f2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
8 changes: 0 additions & 8 deletions hypothesis-python/RELEASE.rst

This file was deleted.

13 changes: 13 additions & 0 deletions hypothesis-python/docs/changes.rst
Expand Up @@ -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:

-------------------
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/version.py
Expand Up @@ -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__))

0 comments on commit 8fe82f2

Please sign in to comment.