Skip to content

Commit fbf5945

Browse files
committed
Bump hypothesis-python version to 6.101.0 and update changelog
[skip ci]
1 parent bfef674 commit fbf5945

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

hypothesis-python/RELEASE.rst

-8
This file was deleted.

hypothesis-python/docs/changes.rst

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

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

21+
.. _v6.101.0:
22+
23+
--------------------
24+
6.101.0 - 2024-05-13
25+
--------------------
26+
27+
The :func:`~hypothesis.extra.django.from_model` function currently
28+
tries to create a strategy for :obj:`~django:django.db.models.AutoField`
29+
fields if they don't have :attr:`~django:django.db.models.Field.auto_created`
30+
set to `True`. The docs say it's supposed to skip all
31+
:obj:`~django:django.db.models.AutoField` fields, so this patch updates
32+
the code to do what the docs say (:issue:`3978`).
33+
2134
.. _v6.100.8:
2235

2336
--------------------

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

0 commit comments

Comments
 (0)