diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 8d4e5112c7..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,10 +0,0 @@ -RELEASE_TYPE: minor - -The ``alphabet=`` argument to :func:`~hypothesis.strategies.from_regex` -now accepts unions of :func:`~hypothesis.strategies.characters` and -:func:`~hypothesis.strategies.sampled_from` strategies, in addition to -accepting each individually. - -This patch also fixes a bug where ``text(...).filter(re.compile(...).match)`` -could generate non-matching instances if the regex pattern contained ``|`` -(:issue:`4008`). diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index ecab24024d..9f0749a8f4 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,21 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.107.0: + +-------------------- +6.107.0 - 2024-07-13 +-------------------- + +The ``alphabet=`` argument to :func:`~hypothesis.strategies.from_regex` +now accepts unions of :func:`~hypothesis.strategies.characters` and +:func:`~hypothesis.strategies.sampled_from` strategies, in addition to +accepting each individually. + +This patch also fixes a bug where ``text(...).filter(re.compile(...).match)`` +could generate non-matching instances if the regex pattern contained ``|`` +(:issue:`4008`). + .. _v6.106.1: -------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 1121ff09f1..d81e1c4cef 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, 106, 1) +__version_info__ = (6, 107, 0) __version__ = ".".join(map(str, __version_info__))