Skip to content

Commit

Permalink
Bump hypothesis-python version to 3.81.0 and update changelog
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
DRMacIver committed Oct 27, 2018
1 parent 5f3e8b7 commit 5b67f82
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
Original file line number Diff line number Diff line change
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.

.. _v3.81.0:

-------------------
3.81.0 - 2018-10-27
-------------------

:class:`~hypothesis.stateful.GenericStateMachine` and
:class:`~hypothesis.stateful.RuleBasedStateMachine` now raise an explicit error
when instances of :obj:`~hypothesis.settings` are assigned to the classes'
settings attribute, which is a no-op (:issue:`1643`). Instead assign to
``SomeStateMachine.TestCase.settings``, or use ``@settings(...)`` as a class
decorator to handle this automatically.

.. _v3.80.0:

-------------------
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/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, 80, 0)
__version_info__ = (3, 81, 0)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit 5b67f82

Please sign in to comment.