From 6ac1eefd78831074c9042e87b937fefab5fe8e76 Mon Sep 17 00:00:00 2001 From: "Travis CI on behalf of David R. MacIver" Date: Wed, 4 Sep 2019 16:09:50 +0000 Subject: [PATCH] Bump hypothesis-python version to 4.35.0 and update changelog [skip ci] --- hypothesis-python/RELEASE.rst | 8 -------- hypothesis-python/docs/changes.rst | 13 +++++++++++++ hypothesis-python/src/hypothesis/version.py | 2 +- 3 files changed, 14 insertions(+), 9 deletions(-) delete mode 100644 hypothesis-python/RELEASE.rst 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__))