@@ -21,6 +21,33 @@ Hypothesis APIs come in three flavours:
21
21
You should generally assume that an API is internal unless you have specific
22
22
information to the contrary.
23
23
24
+ -----------------------------------------------------------------------
25
+ `1.10.3 <https://hypothesis.readthedocs.org/en/v1.10.2/ >`_ - 2015-08-19
26
+ -----------------------------------------------------------------------
27
+
28
+ Another small bug fix release.
29
+
30
+ * lists(elements, unique_by=some_function, min_size=n) would have raised a
31
+ ValidationError if n > Settings.default.average_list_length because it would
32
+ have wanted to use an average list length shorter than the minimum size of
33
+ the list, which is impossible. Now it instead defaults to twice the minimum
34
+ size in these circumstances.
35
+ * basic() strategy would have only ever produced at most ten distinct values
36
+ per run of the test (which is bad if you e.g. have it inside a list). This
37
+ was obviously silly. It will now produce a much better distribution of data,
38
+ both duplicated and non duplicated.
39
+
40
+
41
+ -----------------------------------------------------------------------
42
+ `1.10.2 <https://hypothesis.readthedocs.org/en/v1.10.2/ >`_ - 2015-08-19
43
+ -----------------------------------------------------------------------
44
+
45
+ This is a small bug fix release:
46
+
47
+ * star imports from hypothesis should now work correctly.
48
+ * example quality for examples using flatmap will be better, as the way it had
49
+ previously been implemented was causing problems where Hypothesis was
50
+ erroneously labelling some examples as being duplicates.
24
51
25
52
-----------------------------------------------------------------------
26
53
`1.10.0 <https://hypothesis.readthedocs.org/en/v1.10.0/ >`_ - 2015-08-04
0 commit comments