diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index e1ded9e40c..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,5 +0,0 @@ -RELEASE_TYPE: patch - -This patch ensures that :doc:`observability ` outputs include -an informative repr for :class:`~hypothesis.stateful.RuleBasedStateMachine` -stateful tests, along with more detailed timing information. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 54de10c907..da22ab14b8 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,16 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.98.9: + +------------------- +6.98.9 - 2024-02-20 +------------------- + +This patch ensures that :doc:`observability ` outputs include +an informative repr for :class:`~hypothesis.stateful.RuleBasedStateMachine` +stateful tests, along with more detailed timing information. + .. _v6.98.8: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 6aafd5421c..f54f8dc42f 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, 98, 8) +__version_info__ = (6, 98, 9) __version__ = ".".join(map(str, __version_info__))