Skip to content

Commit e7496d4

Browse files
committed
Version bump and update change log
1 parent 863f090 commit e7496d4

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

docs/changes.rst

+17
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,23 @@ Hypothesis APIs come in three flavours:
2121
You should generally assume that an API is internal unless you have specific
2222
information to the contrary.
2323

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+
2441
-----------------------------------------------------------------------
2542
`1.10.2 <https://hypothesis.readthedocs.org/en/v1.10.2/>`_ - 2015-08-19
2643
-----------------------------------------------------------------------

src/hypothesis/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616

1717
# END HEADER
1818

19-
__version_info__ = (1, 10, 2)
19+
__version_info__ = (1, 10, 3)
2020
__version__ = u'.'.join(map(str, __version_info__))

0 commit comments

Comments
 (0)