From 2fa6d0a55df31ddffde4098b7eb7c7d9991b8dff Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Mon, 22 Nov 2021 21:14:43 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.27.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 7b28e79746..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,6 +0,0 @@ -RELEASE_TYPE: patch - -This patch changes the backing datastructures of :func:`~hypothesis.register_random` -and a few internal caches to use :class:`weakref.WeakKeyDictionary`. This reduces -memory usage and may improve performance when registered :class:`~random.Random` -instances are only used for a subset of your tests (:issue:`3131`). diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index ae83d7ac52..90ba91f3f4 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,17 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.27.1: + +------------------- +6.27.1 - 2021-11-22 +------------------- + +This patch changes the backing datastructures of :func:`~hypothesis.register_random` +and a few internal caches to use :class:`weakref.WeakKeyDictionary`. This reduces +memory usage and may improve performance when registered :class:`~random.Random` +instances are only used for a subset of your tests (:issue:`3131`). + .. _v6.27.0: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 856768c234..8d1de7ab6b 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -13,5 +13,5 @@ # # END HEADER -__version_info__ = (6, 27, 0) +__version_info__ = (6, 27, 1) __version__ = ".".join(map(str, __version_info__))