We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fdf452 commit b343d21Copy full SHA for b343d21
hypothesis-python/RELEASE.rst
hypothesis-python/docs/changes.rst
@@ -18,6 +18,16 @@ Hypothesis 6.x
18
19
.. include:: ../RELEASE.rst
20
21
+.. _v6.24.4:
22
+
23
+-------------------
24
+6.24.4 - 2021-11-15
25
26
27
+This patch gives Hypothesis it's own internal :class:`~random.Random` instance,
28
+ensuring that test suites which reset the global random state don't induce
29
+weird correlations between property-based tests (:issue:`2135`).
30
31
.. _v6.24.3:
32
33
-------------------
hypothesis-python/src/hypothesis/version.py
@@ -13,5 +13,5 @@
13
#
14
# END HEADER
15
16
-__version_info__ = (6, 24, 3)
+__version_info__ = (6, 24, 4)
17
__version__ = ".".join(map(str, __version_info__))
0 commit comments