diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index 5686cfcc3d..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,4 +0,0 @@ -RELEASE_TYPE: patch - -This patch reformats our code with the latest :pypi:`black` to -take advantage of the support for magic trailing commas. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 0eabd37143..d4a4ab7eb5 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -10,6 +10,15 @@ on `PyPI `__. Hypothesis 5.x ============== +.. _v5.35.4: + +------------------- +5.35.4 - 2020-09-21 +------------------- + +This patch reformats our code with the latest :pypi:`black` to +take advantage of the support for magic trailing commas. + .. _v5.35.3: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index 213568d46e..eb4e9c1073 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -13,5 +13,5 @@ # # END HEADER -__version_info__ = (5, 35, 3) +__version_info__ = (5, 35, 4) __version__ = ".".join(map(str, __version_info__))