File tree 2 files changed +18
-1
lines changed
2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,23 @@ 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
+
24
41
-----------------------------------------------------------------------
25
42
`1.10.2 <https://hypothesis.readthedocs.org/en/v1.10.2/ >`_ - 2015-08-19
26
43
-----------------------------------------------------------------------
Original file line number Diff line number Diff line change 16
16
17
17
# END HEADER
18
18
19
- __version_info__ = (1 , 10 , 2 )
19
+ __version_info__ = (1 , 10 , 3 )
20
20
__version__ = u'.' .join (map (str , __version_info__ ))
You can’t perform that action at this time.
0 commit comments