From 73e41c3514e073a1c1249d5bfd7ab7b46f47c6ec Mon Sep 17 00:00:00 2001 From: "Travis CI on behalf of David R. MacIver" Date: Wed, 13 Mar 2019 06:07:20 +0000 Subject: [PATCH] Bump hypothesis-python version to 4.11.1 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 3 --- hypothesis-python/docs/changes.rst | 8 ++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 9 insertions(+), 4 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 aab3eb2b2a..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,3 +0,0 @@ -RELEASE_TYPE: patch - -This is a formatting-only patch, enabled by a new version of :pypi:`isort`. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index dbbd78855c..c587c42b18 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -21,6 +21,14 @@ Hypothesis APIs come in three flavours: You should generally assume that an API is internal unless you have specific information to the contrary. +.. _v4.11.1: + +------------------- +4.11.1 - 2019-03-13 +------------------- + +This is a formatting-only patch, enabled by a new version of :pypi:`isort`. + .. _v4.11.0: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 98c01846b3..4344ce4bcb 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, 11, 0) +__version_info__ = (4, 11, 1) __version__ = ".".join(map(str, __version_info__))