File tree 4 files changed +17
-12
lines changed 4 files changed +17
-12
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -18,6 +18,21 @@ Hypothesis 6.x
18
18
19
19
.. include :: ../RELEASE.rst
20
20
21
+ .. _v6.54.0 :
22
+
23
+ -------------------
24
+ 6.54.0 - 2022-08-02
25
+ -------------------
26
+
27
+ Reporting of :obj: `multiple failing examples <hypothesis.settings.report_multiple_bugs> `
28
+ now uses the :pep: `654 ` `ExceptionGroup <https://docs.python.org/3.11/library/exceptions.html#ExceptionGroup >`__ type, which is provided by the
29
+ :pypi: `exceptiongroup ` backport on Python 3.10 and earlier (:issue: `3175 `).
30
+ ``hypothesis.errors.MultipleFailures `` is therefore deprecated.
31
+
32
+ Failing examples and other reports are now stored as :pep: `678 ` exception notes, which
33
+ ensures that they will always appear together with the traceback and other information
34
+ about their respective error.
35
+
21
36
.. _v6.53.0 :
22
37
23
38
-------------------
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ def __getattr__(name):
132
132
note_deprecation (
133
133
"MultipleFailures is deprecated; use the builtin `BaseExceptionGroup` type "
134
134
"instead, or `exceptiongroup.BaseExceptionGroup` before Python 3.11" ,
135
- since = "RELEASEDAY " ,
135
+ since = "2022-08-02 " ,
136
136
has_codemod = False , # This would be a great PR though!
137
137
)
138
138
return BaseExceptionGroup
Original file line number Diff line number Diff line change 8
8
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
9
# obtain one at https://mozilla.org/MPL/2.0/.
10
10
11
- __version_info__ = (6 , 53 , 0 )
11
+ __version_info__ = (6 , 54 , 0 )
12
12
__version__ = "." .join (map (str , __version_info__ ))
You can’t perform that action at this time.
0 commit comments