diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index d5f141b11a..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,7 +0,0 @@ -RELEASE_TYPE: patch - -This patch improves our error and warning messages. - -- Add a warning for ``st.text("ascii")`` - you probably meant ``st.text(st.characters(codec="ascii"))``. Similarly for ``"utf-8"``. -- Recommend remedies in the error message of ``Unsatisfiable``. -- When ``@given`` errors because it was given an extra keyword argument, and the keyword matches a setting name like ``max_examples``, recommend ``@settings(max_examples=...)`` instead. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 01b3600e8b..98ed795096 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,18 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.122.3: + +-------------------- +6.122.3 - 2024-12-08 +-------------------- + +This patch improves our error and warning messages. + +- Add a warning for ``st.text("ascii")`` - you probably meant ``st.text(st.characters(codec="ascii"))``. Similarly for ``"utf-8"``. +- Recommend remedies in the error message of ``Unsatisfiable``. +- When ``@given`` errors because it was given an extra keyword argument, and the keyword matches a setting name like ``max_examples``, recommend ``@settings(max_examples=...)`` instead. + .. _v6.122.2: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 38edd4b037..aae36010eb 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, 2) +__version_info__ = (6, 122, 3) __version__ = ".".join(map(str, __version_info__))