Skip to content

Commit

Permalink
Bump version to 3.30.0 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis CI User committed Sep 19, 2017
1 parent 37278cb commit 770e394
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
13 changes: 0 additions & 13 deletions RELEASE.rst

This file was deleted.

16 changes: 16 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,22 @@ Hypothesis APIs come in three flavours:
You should generally assume that an API is internal unless you have specific
information to the contrary.

-------------------
3.30.0 - 2017-09-20
-------------------

This release introduces two new features:

* pytest users can specify a seed to use for ``@given`` based tests by passing
the ``--hypothesis-seed`` command line argument.
* When a test fails, either with a health check failure or a falsifying example,
Hypothesis will print out a seed that led to that failure, if the test is not
already running with a fixed seed. You can then recreate that failure using either
the ``@seed`` decorator or (if you are running pytest) with ``--hypothesis-seed``.


This work was funded by `Smarkets <https://smarkets.com/>`_.

-------------------
3.29.0 - 2017-09-19
-------------------
Expand Down
2 changes: 1 addition & 1 deletion src/hypothesis/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@

from __future__ import division, print_function, absolute_import

__version_info__ = (3, 29, 0)
__version_info__ = (3, 30, 0)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit 770e394

Please sign in to comment.