From 2730c72d18f9d28f6005e08db8b70677e9cfcd8b Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Sun, 3 Sep 2023 19:39:59 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.83.1 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 6375f1b63f..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,6 +0,0 @@ -RELEASE_TYPE: patch - -Pretty-printing of failing examples can now use functions registered with -:func:`IPython.lib.pretty.for_type` or :func:`~IPython.lib.pretty.for_type_by_name`, -as well as restoring compatibility with ``_repr_pretty_`` callback methods -which were accidentally broken in :ref:`version 6.61.2 ` (:issue:`3721`). diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 5f2d0c31a4..10693aabb4 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,17 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.83.1: + +------------------- +6.83.1 - 2023-09-03 +------------------- + +Pretty-printing of failing examples can now use functions registered with +:func:`IPython.lib.pretty.for_type` or :func:`~IPython.lib.pretty.for_type_by_name`, +as well as restoring compatibility with ``_repr_pretty_`` callback methods +which were accidentally broken in :ref:`version 6.61.2 ` (:issue:`3721`). + .. _v6.83.0: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 3fd46faac5..9365671a34 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, 83, 0) +__version_info__ = (6, 83, 1) __version__ = ".".join(map(str, __version_info__))