Skip to content

Commit

Permalink
Dockertest Version 0.8.1 (API Changes)
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Evich <[email protected]>
  • Loading branch information
cevich committed Oct 28, 2014
1 parent 44643e2 commit 28ca05a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion config_defaults/defaults.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions dockertest/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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):
Expand Down

0 comments on commit 28ca05a

Please sign in to comment.