Skip to content

Commit

Permalink
Version bump and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
DRMacIver committed Sep 27, 2015
1 parent b53b0e3 commit 0139106
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion docs/changes.rst
Expand Up @@ -22,7 +22,23 @@ You should generally assume that an API is internal unless you have specific
information to the contrary.

-----------------------------------------------------------------------
`1.11.3 <https://hypothesis.readthedocs.org/en/v1.11.3/>`_ - upcoming
`1.11.4 <https://hypothesis.readthedocs.org/en/v1.11.4/>`_ - 2015-09-27
-----------------------------------------------------------------------

* Hide modifications Hypothesis needs to make to sys.path by undoing them
after we've imported the relevant modules. This is a workaround for issues
cryptography experienced on windows.
* Slightly improved performance of drawing from sampled_from on large lists
of alternatives.
* Significantly improved performance of drawing from one_of or strategies
using \| (note this includes a lot of strategies internally - floats()
and integers() both fall into this category). There turned out to be a
massive performance regression introduced in 1.10.0 affecting these which
probably would have made tests using Hypothesis significantly slower than
they should have been.

-----------------------------------------------------------------------
`1.11.3 <https://hypothesis.readthedocs.org/en/v1.11.3/>`_ - 2015-09-23
-----------------------------------------------------------------------

* Better argument validation for datetimes() strategy - previously setting
Expand Down
2 changes: 1 addition & 1 deletion src/hypothesis/version.py
Expand Up @@ -16,5 +16,5 @@

# END HEADER

__version_info__ = (1, 11, 3)
__version_info__ = (1, 11, 4)
__version__ = u'.'.join(map(str, __version_info__))

0 comments on commit 0139106

Please sign in to comment.