Skip to content

Commit

Permalink
Bump hypothesis-python version to 6.48.1 and update changelog
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
DRMacIver committed Jun 27, 2022
1 parent a398895 commit 1ac457c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
10 changes: 0 additions & 10 deletions hypothesis-python/RELEASE.rst

This file was deleted.

15 changes: 15 additions & 0 deletions hypothesis-python/docs/changes.rst
Expand Up @@ -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:

-------------------
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/version.py
Expand Up @@ -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__))

0 comments on commit 1ac457c

Please sign in to comment.