Skip to content

Commit

Permalink
Bump hypothesis-python version to 4.10.0 and update changelog
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
DRMacIver committed Mar 11, 2019
1 parent 3817ee5 commit 7de5381
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
7 changes: 0 additions & 7 deletions hypothesis-python/RELEASE.rst

This file was deleted.

12 changes: 12 additions & 0 deletions hypothesis-python/docs/changes.rst
Expand Up @@ -21,6 +21,18 @@ Hypothesis APIs come in three flavours:
You should generally assume that an API is internal unless you have specific
information to the contrary.

.. _v4.10.0:

-------------------
4.10.0 - 2019-03-11
-------------------

This release improves Hypothesis's to detect flaky tests, by noticing when the behaviour of the test changes between runs.
In particular this will notice many new cases where data generation depends on external state (e.g. external sources of randomness) and flag those as flaky sooner and more reliably.

The basis of this feature is a considerable reengineering of how Hypothesis stores its history of test cases,
so on top of this its memory usage should be considerably reduced.

.. _v4.9.0:

------------------
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, 9, 0)
__version_info__ = (4, 10, 0)
__version__ = ".".join(map(str, __version_info__))

0 comments on commit 7de5381

Please sign in to comment.