From bf4f19387a264827071f540fc460702a5d3cf5a3 Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Sat, 16 Sep 2023 23:39:39 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.85.1 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 4 ---- hypothesis-python/docs/changes.rst | 9 +++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 10 insertions(+), 5 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 e8bb94a555..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,4 +0,0 @@ -RELEASE_TYPE: patch - -This patch switches some of our type annotations to use :obj:`typing.Literal` -when only a few specific values are allowed, such as UUID or IP address versions. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index e74f039f7a..da8423a9e2 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,15 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.85.1: + +------------------- +6.85.1 - 2023-09-16 +------------------- + +This patch switches some of our type annotations to use :obj:`typing.Literal` +when only a few specific values are allowed, such as UUID or IP address versions. + .. _v6.85.0: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 53b24c9e3a..343ff8ba68 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, 85, 0) +__version_info__ = (6, 85, 1) __version__ = ".".join(map(str, __version_info__))