diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index b9f9b977a8..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,4 +0,0 @@ -RELEASE_TYPE: patch - -This patch improves the messaging that comes from invalid size arguments -to collection strategies such as :func:`~hypothesis.strategies.lists`. \ No newline at end of file diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 09234ed937..b287be0cce 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -21,6 +21,15 @@ Hypothesis APIs come in three flavours: You should generally assume that an API is internal unless you have specific information to the contrary. +.. _v4.35.1: + +------------------- +4.35.1 - 2019-09-09 +------------------- + +This patch improves the messaging that comes from invalid size arguments +to collection strategies such as :func:`~hypothesis.strategies.lists`. + .. _v4.35.0: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index fbfbedebe5..8683ec97a2 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -17,5 +17,5 @@ from __future__ import absolute_import, division, print_function -__version_info__ = (4, 35, 0) +__version_info__ = (4, 35, 1) __version__ = ".".join(map(str, __version_info__))