From 1ac457cd102a0290b2fe5771dce126f9c13a511b Mon Sep 17 00:00:00 2001 From: CI on behalf of the Hypothesis team Date: Mon, 27 Jun 2022 20:22:05 +0000 Subject: [PATCH] Bump hypothesis-python version to 6.48.1 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 10 ---------- hypothesis-python/docs/changes.rst | 15 +++++++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 16 insertions(+), 11 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 b8c410915d..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,10 +0,0 @@ -RELEASE_TYPE: patch - -This release automatically rewrites some simple filters, such as -``floats().filter(lambda x: x >= 10)`` to the more efficient -``floats(min_value=10)``, based on the AST of the predicate. - -We continue to recommend using the efficient form directly wherever -possible, but this should be useful for e.g. :pypi:`pandera` "``Checks``" -where you already have a simple predicate and translating manually -is really annoying. See :issue:`2701` for details. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 742d125625..9c7dc3158d 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,21 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.48.1: + +------------------- +6.48.1 - 2022-06-27 +------------------- + +This release automatically rewrites some simple filters, such as +``floats().filter(lambda x: x >= 10)`` to the more efficient +``floats(min_value=10)``, based on the AST of the predicate. + +We continue to recommend using the efficient form directly wherever +possible, but this should be useful for e.g. :pypi:`pandera` "``Checks``" +where you already have a simple predicate and translating manually +is really annoying. See :issue:`2701` for details. + .. _v6.48.0: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 75ae26d42d..97420dfa60 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, 48, 0) +__version_info__ = (6, 48, 1) __version__ = ".".join(map(str, __version_info__))