Skip to content

Commit 54d029d

Browse files
committed
Bump hypothesis-python version to 6.103.0 and update changelog
[skip ci]
1 parent 822e39d commit 54d029d

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

hypothesis-python/RELEASE.rst

-7
This file was deleted.

hypothesis-python/docs/changes.rst

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

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

21+
.. _v6.103.0:
22+
23+
--------------------
24+
6.103.0 - 2024-05-29
25+
--------------------
26+
27+
This release migrates the shrinker to our new internal representation, called the IR layer (:pull:`3962`). This improves the shrinker's performance in the majority of cases. For example, on the Hypothesis test suite, shrinking is a median of 1.38x faster.
28+
29+
It is possible this release regresses performance while shrinking certain strategies. If you encounter strategies which reliably shrink more slowly than they used to (or shrink slowly at all), please open an issue!
30+
31+
You can read more about the IR layer at :issue:`3921`.
32+
2133
.. _v6.102.6:
2234

2335
--------------------

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

0 commit comments

Comments
 (0)