From be7a9f4700e070dd76e93be2af9598e25c287179 Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Tue, 25 Apr 2023 03:24:11 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.72.3 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 6 ------ hypothesis-python/docs/changes.rst | 11 +++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 12 insertions(+), 7 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 1bff88ad38..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,6 +0,0 @@ -RELEASE_TYPE: patch - -This patch fixes a bug with :func:`~hypothesis.strategies.from_type()` with ``dict[tuple[int, int], str]`` -(:issue:`3527`). - - Thanks to Nick Muoh at the PyCon Sprints! diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 2d20013ff2..da3d58ae9d 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,17 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.72.3: + +------------------- +6.72.3 - 2023-04-25 +------------------- + +This patch fixes a bug with :func:`~hypothesis.strategies.from_type()` with ``dict[tuple[int, int], str]`` +(:issue:`3527`). + + Thanks to Nick Muoh at the PyCon Sprints! + .. _v6.72.2: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 5b3da48eea..709d31dc61 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, 72, 2) +__version_info__ = (6, 72, 3) __version__ = ".".join(map(str, __version_info__))