diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 1fa78ad520..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,5 +0,0 @@ -RELEASE_TYPE: minor - -:func:`~hypothesis.strategies.from_type` can now handle constructors with -required positional-only arguments if they have type annotations. Previously, -we only passed arguments by keyword. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 161c967e90..1b4130d4d5 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,16 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.123.0: + +-------------------- +6.123.0 - 2024-12-23 +-------------------- + +:func:`~hypothesis.strategies.from_type` can now handle constructors with +required positional-only arguments if they have type annotations. Previously, +we only passed arguments by keyword. + .. _v6.122.7: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index cb6b0139db..0c8627ff88 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -8,5 +8,5 @@ # v. 2.0. If a copy of the MPL was not distributed with this file, You can # obtain one at https://mozilla.org/MPL/2.0/. -__version_info__ = (6, 122, 7) +__version_info__ = (6, 123, 0) __version__ = ".".join(map(str, __version_info__))