From 28ca05aa6169082422be19cbe54fa48d846ea785 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Tue, 29 Apr 2014 11:40:58 -0400 Subject: [PATCH] Dockertest Version 0.8.1 (API Changes) Signed-off-by: Chris Evich --- conf.py | 2 +- config_defaults/defaults.ini | 2 +- dockertest/version.py | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/conf.py b/conf.py index d3122226b..8c3e6a2a4 100644 --- a/conf.py +++ b/conf.py @@ -22,7 +22,7 @@ #: are also reflected in documentation. #: #: The short X.Y version. This MUST be inside single ("'") quotes for parsing!! -version = '0.7.8' +version = '0.8.1' #: If extensions (or modules to document with autodoc) are in another directory, #: add these directories to sys.path here. If the directory is relative to the diff --git a/config_defaults/defaults.ini b/config_defaults/defaults.ini index fa3d62ed2..5d78f4773 100644 --- a/config_defaults/defaults.ini +++ b/config_defaults/defaults.ini @@ -6,7 +6,7 @@ # all settings and sections defined here (config_defaults/) ##### API Version number applying to all bundled tests -config_version = 0.7.8 +config_version = 0.8.1 #: Autotest version dependency for framework (or override for individual tests) autotest_version = 0.16.0-master-66-g9aaee diff --git a/dockertest/version.py b/dockertest/version.py index f5786a1a3..910b9169c 100644 --- a/dockertest/version.py +++ b/dockertest/version.py @@ -25,11 +25,11 @@ MAJOR = 0 #: Minor API version number, as an integer (range 0-255). -MINOR = 7 +MINOR = 8 #: API Revision number, as an integer (range 0-255). Not significant! #: for version comparisons. e.g. ``0.0.1 == 0.0.2 != 0.2.2`` -REVIS = 8 +REVIS = 1 #: String format representation for MAJOR, MINOR, and REVIS FMTSTRING = "%d.%d.%d" @@ -41,8 +41,8 @@ #: to signal version checking is impossible NOVERSIONCHECK = '@!NOVERSIONCHECK!@' -#: If by change no autotest_version is set, use this value -AUTOTESTVERSION = '0.15.0' +#: If by chance no autotest_version is set, use this value +AUTOTESTVERSION = '0.16.0' def str2int(version_string):