From e8a45652c315198c828d0c76d91e1f613e1f3e74 Mon Sep 17 00:00:00 2001 From: "Travis CI on behalf of David R. MacIver" Date: Thu, 27 Sep 2018 13:35:51 +0000 Subject: [PATCH] Bump hypothesis-python version to 3.73.3 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 4 ---- hypothesis-python/docs/changes.rst | 9 +++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 hypothesis-python/RELEASE.rst diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 5f8b5d841f..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,4 +0,0 @@ -RELEASE_TYPE: patch - -Tracebacks involving :func:`@composite ` -are now slightly shorter due to some internal refactoring. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 12c83bbefc..eee4221745 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. +.. _v3.73.3: + +------------------- +3.73.3 - 2018-09-27 +------------------- + +Tracebacks involving :func:`@composite ` +are now slightly shorter due to some internal refactoring. + .. _v3.73.2: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 4ab16e9b35..fba7ac85d0 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -17,5 +17,5 @@ from __future__ import division, print_function, absolute_import -__version_info__ = (3, 73, 2) +__version_info__ = (3, 73, 3) __version__ = '.'.join(map(str, __version_info__))