From d8cbc06da1a9698eef827b42caacb7bea4457070 Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Mon, 30 Aug 2021 11:24:00 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.17.2 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 5 ----- hypothesis-python/docs/changes.rst | 10 ++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 11 insertions(+), 6 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 4d8299f162..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,5 +0,0 @@ -RELEASE_TYPE: patch - -This patch wraps some internal helper code in our proxies decorator to prevent -mutations of method docstrings carrying over to other instances of the respective -methods. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 8dca07ba28..d3789fa802 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,16 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.17.2: + +------------------- +6.17.2 - 2021-08-30 +------------------- + +This patch wraps some internal helper code in our proxies decorator to prevent +mutations of method docstrings carrying over to other instances of the respective +methods. + .. _v6.17.1: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index ed44e7d37e..bbb0d65b73 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -13,5 +13,5 @@ # # END HEADER -__version_info__ = (6, 17, 1) +__version_info__ = (6, 17, 2) __version__ = ".".join(map(str, __version_info__))