diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 4a15bf6da8..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,6 +0,0 @@ -RELEASE_TYPE: patch - -This patch implements filter-rewriting for :func:`~hypothesis.strategies.text` -and :func:`~hypothesis.strategies.binary` with the :meth:`~re.Pattern.search`, -:meth:`~re.Pattern.match`, or :meth:`~re.Pattern.fullmatch` method of a -:func:`re.compile`\ d regex. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index e4239a6330..64bc1ea974 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,17 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.98.13: + +-------------------- +6.98.13 - 2024-02-27 +-------------------- + +This patch implements filter-rewriting for :func:`~hypothesis.strategies.text` +and :func:`~hypothesis.strategies.binary` with the :meth:`~re.Pattern.search`, +:meth:`~re.Pattern.match`, or :meth:`~re.Pattern.fullmatch` method of a +:func:`re.compile`\ d regex. + .. _v6.98.12: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index e986241037..187c174def 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, 12) +__version_info__ = (6, 98, 13) __version__ = ".".join(map(str, __version_info__))