Skip to content

Commit 8c75b9e

Browse files
committed
Bump hypothesis-python version to 6.108.7 and update changelog
[skip ci]
1 parent 5221dbd commit 8c75b9e

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

hypothesis-python/RELEASE.rst

-12
This file was deleted.

hypothesis-python/docs/changes.rst

+17
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,23 @@ Hypothesis 6.x
1818

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

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+
2138
.. _v6.108.6:
2239

2340
--------------------

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, 108, 6)
11+
__version_info__ = (6, 108, 7)
1212
__version__ = ".".join(map(str, __version_info__))

0 commit comments

Comments
 (0)