From 15c63eb112884a190d34be78a170eab46c601b81 Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Mon, 25 Sep 2017 14:18:25 +0000 Subject: [PATCH] Bump version to 3.30.3 and update changelog --- RELEASE.rst | 5 ----- docs/changes.rst | 8 ++++++++ src/hypothesis/version.py | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) delete mode 100644 RELEASE.rst diff --git a/RELEASE.rst b/RELEASE.rst deleted file mode 100644 index 076e1e1044..0000000000 --- a/RELEASE.rst +++ /dev/null @@ -1,5 +0,0 @@ -RELEASE_TYPE: patch - -This release fixes some formatting and small typos/grammar issues in the -documentation, specifically the page docs/details.rst, and some inline -docs linked from there. diff --git a/docs/changes.rst b/docs/changes.rst index d2b783254e..c9ef57595c 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -21,6 +21,14 @@ Hypothesis APIs come in three flavours: You should generally assume that an API is internal unless you have specific information to the contrary. +------------------- +3.30.3 - 2017-09-25 +------------------- + +This release fixes some formatting and small typos/grammar issues in the +documentation, specifically the page docs/details.rst, and some inline +docs linked from there. + ------------------- 3.30.2 - 2017-09-24 ------------------- diff --git a/src/hypothesis/version.py b/src/hypothesis/version.py index dff7ff425e..9f6a71cc57 100644 --- a/src/hypothesis/version.py +++ b/src/hypothesis/version.py @@ -17,5 +17,5 @@ from __future__ import division, print_function, absolute_import -__version_info__ = (3, 30, 2) +__version_info__ = (3, 30, 3) __version__ = '.'.join(map(str, __version_info__))