diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index c455350063..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,8 +0,0 @@ -RELEASE_TYPE: minor - -This release improves the :func:`~hypothesis.extra.lark.from_lark` strategy, -tightening argument validation and adding the ``explicit`` argument to allow use -with terminals that use ``@declare`` instead of a string or regular expression. - -This feature is required to handle features such as indent and dedent tokens -in Python code, which can be generated with the :pypi:`hypothesmith` package. diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index ff4ea228d1..09234ed937 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -21,6 +21,19 @@ Hypothesis APIs come in three flavours: You should generally assume that an API is internal unless you have specific information to the contrary. +.. _v4.35.0: + +------------------- +4.35.0 - 2019-09-04 +------------------- + +This release improves the :func:`~hypothesis.extra.lark.from_lark` strategy, +tightening argument validation and adding the ``explicit`` argument to allow use +with terminals that use ``@declare`` instead of a string or regular expression. + +This feature is required to handle features such as indent and dedent tokens +in Python code, which can be generated with the :pypi:`hypothesmith` package. + .. _v4.34.0: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index f79813efbc..fbfbedebe5 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -17,5 +17,5 @@ from __future__ import absolute_import, division, print_function -__version_info__ = (4, 34, 0) +__version_info__ = (4, 35, 0) __version__ = ".".join(map(str, __version_info__))