Skip to content

Commit c95176c

Browse files
committed
Bump hypothesis-python version to 6.72.0 and update changelog
[skip ci]
1 parent f8108ba commit c95176c

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

hypothesis-python/RELEASE.rst

-4
This file was deleted.

hypothesis-python/docs/changes.rst

+9
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ Hypothesis 6.x
1818

1919
.. include:: ../RELEASE.rst
2020

21+
.. _v6.72.0:
22+
23+
-------------------
24+
6.72.0 - 2023-04-16
25+
-------------------
26+
27+
This release deprecates ``Healthcheck.all()``, and :ref:`adds a codemod <codemods>`
28+
to automatically replace it with ``list(Healthcheck)`` (:issue:`3596`).
29+
2130
.. _v6.71.0:
2231

2332
-------------------

hypothesis-python/src/hypothesis/_settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ def all(cls) -> List["HealthCheck"]:
466466
# Skipping of deprecated attributes is handled in HealthCheckMeta.__iter__
467467
note_deprecation(
468468
f"`Healthcheck.all()` is deprecated; use `list(HealthCheck)` instead.",
469-
since="RELEASEDAY",
469+
since="2023-04-16",
470470
has_codemod=True,
471471
)
472472
return list(HealthCheck)

hypothesis-python/src/hypothesis/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
99
# obtain one at https://mozilla.org/MPL/2.0/.
1010

11-
__version_info__ = (6, 71, 0)
11+
__version_info__ = (6, 72, 0)
1212
__version__ = ".".join(map(str, __version_info__))

0 commit comments

Comments
 (0)