From d16e349dca8b029a8c2b52bc83ea8ca25a399a0b Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Fri, 17 Feb 2023 07:54:23 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.68.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 772499e130..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,5 +0,0 @@ -RELEASE_TYPE: patch - -This patch fixes missing imports of the :mod:`re` module, when :doc:`ghostwriting ` -tests which include compiled patterns or regex flags. -Thanks to Jens Heinrich for reporting and promptly fixing this bug! \ No newline at end of file diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index bd2c578ea9..8d0e4ed508 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,16 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.68.2: + +------------------- +6.68.2 - 2023-02-17 +------------------- + +This patch fixes missing imports of the :mod:`re` module, when :doc:`ghostwriting ` +tests which include compiled patterns or regex flags. +Thanks to Jens Heinrich for reporting and promptly fixing this bug! + .. _v6.68.1: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index f0f851ffd9..0d81b9b37c 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, 68, 1) +__version_info__ = (6, 68, 2) __version__ = ".".join(map(str, __version_info__))