From a9e16c7ae34e67b36eee1845f315477fbe8cd35c Mon Sep 17 00:00:00 2001 From: Chris Dent Date: Tue, 20 Sep 2016 19:31:23 +0100 Subject: [PATCH] Release 1.25.0 - allow overriding of fully qualified test name via test_loader_name --- docs/source/release.rst | 7 +++++++ gabbi/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/source/release.rst b/docs/source/release.rst index 3b2c4db..692d05b 100644 --- a/docs/source/release.rst +++ b/docs/source/release.rst @@ -5,6 +5,13 @@ These are informal release notes for gabbi since version 1.0.0, highlighting major features and changes. For more detail see the `commit logs`_ on GitHub. +1.25.0 +------ + +Allow the ``test_loader_name`` arg to +:meth:`gabbi.driver.build_tests` to override the prefix of the +pretty printed name of generated tests. + 1.24.0 ------ diff --git a/gabbi/__init__.py b/gabbi/__init__.py index 436df35..9d10693 100644 --- a/gabbi/__init__.py +++ b/gabbi/__init__.py @@ -12,4 +12,4 @@ # under the License. """See gabbi.driver and gabbbi.case.""" -__version__ = '1.24.1' +__version__ = '1.25.0'