Skip to content

Commit

Permalink
Bump hypothesis-python version to 6.69.0 and update changelog
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
DRMacIver committed Mar 15, 2023
1 parent b288c2a commit aa1ab87
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
7 changes: 0 additions & 7 deletions hypothesis-python/RELEASE.rst

This file was deleted.

12 changes: 12 additions & 0 deletions hypothesis-python/docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ Hypothesis 6.x

.. include:: ../RELEASE.rst

.. _v6.69.0:

-------------------
6.69.0 - 2023-03-15
-------------------

This release turns ``HealthCheck.return_value`` and ``HealthCheck.not_a_test_method``
into unconditional errors. Passing them to ``suppress_health_check=`` is therefore a deprecated no-op.
(:issue:`3568`). Thanks to Reagan Lee for the patch!

Separately, GraalPy can now run and pass most of the hypothesis test suite (:issue:`3587`).

.. _v6.68.3:

-------------------
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ def validate_health_check_suppressions(suppressions):
if s in (HealthCheck.return_value, HealthCheck.not_a_test_method):
note_deprecation(
f"The {s.name} health check is deprecated, because this is always an error.",
since="RELEASEDAY",
since="2023-03-15",
has_codemod=False,
)
return suppressions
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/version.py
Original file line number Diff line number Diff line change
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, 68, 3)
__version_info__ = (6, 69, 0)
__version__ = ".".join(map(str, __version_info__))

0 comments on commit aa1ab87

Please sign in to comment.