File tree 3 files changed +18
-13
lines changed
3 files changed +18
-13
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -18,6 +18,23 @@ Hypothesis 6.x
18
18
19
19
.. include :: ../RELEASE.rst
20
20
21
+ .. _v6.108.7 :
22
+
23
+ --------------------
24
+ 6.108.7 - 2024-08-04
25
+ --------------------
26
+
27
+ This patch improves our pretty-printer for unusual numbers.
28
+
29
+ - Signalling NaNs are now represented by using the :mod: `struct ` module
30
+ to show the exact value by converting from a hexadecimal integer
31
+
32
+ - CPython `limits integer-to-string conversions
33
+ <https://docs.python.org/3/library/stdtypes.html#integer-string-conversion-length-limitation> `__
34
+ to mitigate DDOS attacks. We now use hexadecimal for very large
35
+ integers, and include underscore separators for integers with ten
36
+ or more digits.
37
+
21
38
.. _v6.108.6 :
22
39
23
40
--------------------
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 , 108 , 6 )
11
+ __version_info__ = (6 , 108 , 7 )
12
12
__version__ = "." .join (map (str , __version_info__ ))
You can’t perform that action at this time.
0 commit comments