diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index bac2040a69..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,5 +0,0 @@ -RELEASE_TYPE: patch - -This release fixes :issue:`3080`, where :func:`~hypothesis.strategies.from_type` -failed on unions containing :pep:`585` builtin generic types (like ``list[int]``) -in Python 3.9 and later. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 7a809ca313..d3d46d8df4 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,16 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.27.3: + +------------------- +6.27.3 - 2021-11-28 +------------------- + +This release fixes :issue:`3080`, where :func:`~hypothesis.strategies.from_type` +failed on unions containing :pep:`585` builtin generic types (like ``list[int]``) +in Python 3.9 and later. + .. _v6.27.2: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index a08d2eb7d4..2f829aadde 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -13,5 +13,5 @@ # # END HEADER -__version_info__ = (6, 27, 2) +__version_info__ = (6, 27, 3) __version__ = ".".join(map(str, __version_info__))