From 36bb4ca7efcd3029e071f55a2a7124504b1ce0a6 Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Sat, 15 Jul 2023 09:30:19 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.81.2 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 10 ---------- hypothesis-python/docs/changes.rst | 14 ++++++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 15 insertions(+), 11 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 aa700a808a..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,10 +0,0 @@ -RELEASE_TYPE: patch - -If the :envvar:`HYPOTHESIS_NO_PLUGINS` environment variable is set, we'll avoid -:ref:`loading plugins ` such as `the old Pydantic integration -`__ or -`HypoFuzz' CLI options `__. - -This is probably only useful for our own self-tests, but documented in case it might -help narrow down any particularly weird bugs in complex environments. - diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 70c59062a4..11160f1b12 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,20 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.81.2: + +------------------- +6.81.2 - 2023-07-15 +------------------- + +If the :envvar:`HYPOTHESIS_NO_PLUGINS` environment variable is set, we'll avoid +:ref:`loading plugins ` such as `the old Pydantic integration +`__ or +`HypoFuzz' CLI options `__. + +This is probably only useful for our own self-tests, but documented in case it might +help narrow down any particularly weird bugs in complex environments. + .. _v6.81.1: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 6dc2d05115..6f1a48168e 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -8,5 +8,5 @@ # v. 2.0. If a copy of the MPL was not distributed with this file, You can # obtain one at https://mozilla.org/MPL/2.0/. -__version_info__ = (6, 81, 1) +__version_info__ = (6, 81, 2) __version__ = ".".join(map(str, __version_info__))