File tree Expand file tree Collapse file tree 4 files changed +13
-8
lines changed
Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -18,6 +18,17 @@ Hypothesis 6.x
1818
1919 .. include:: ../RELEASE.rst
2020
21+ .. _v6.148.0:
22+
23+ --------------------
24+ 6.148.0 - 2025-11-15
25+ --------------------
26+
27+ Calling :func:`~hypothesis.settings.register_profile` from within a test
28+ decorated with :func:`@settings <hypothesis.settings>` is now deprecated,
29+ to avoid confusion about which settings are used as the baseline for the
30+ new profile.
31+
2132.. _v6.147.0:
2233
2334--------------------
Original file line number Diff line number Diff line change @@ -1126,7 +1126,7 @@ def register_profile(
11261126 "Cannot register a settings profile when the current settings differ "
11271127 "from the current profile (usually due to an @settings decorator). "
11281128 "Register profiles at module level instead." ,
1129- since = "RELEASEDAY " ,
1129+ since = "2025-11-15 " ,
11301130 has_codemod = False ,
11311131 )
11321132
Original file line number Diff line number Diff line change 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 , 147 , 0 )
11+ __version_info__ = (6 , 148 , 0 )
1212__version__ = "." .join (map (str , __version_info__ ))
You can’t perform that action at this time.
0 commit comments