diff --git a/CHANGES b/CHANGES index e15b05c..ac39fc9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,7 @@ History of changes to pytest-dependency ======================================= -* Version 0.2.0 (not yet released) +* Version 0.2 (2017-05-28) ** New features @@ -10,7 +10,7 @@ + Issue #4: Add a depend() function to add a dependency to a test at runtime. -* Version 0.1.0 (2017-01-29) +* Version 0.1 (2017-01-29) + Initial release as an independent Python module. diff --git a/doc/src/conf.py b/doc/src/conf.py index fddc00f..052dd9e 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -52,9 +52,9 @@ # built documents. # # The short X.Y version. -version = '0.1' +version = '0.2' # The full version, including alpha/beta/rc tags. -release = '0.1' +release = '0.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pytest_dependency.py b/pytest_dependency.py index 03f84f7..bce49ac 100644 --- a/pytest_dependency.py +++ b/pytest_dependency.py @@ -7,7 +7,7 @@ import pytest -__version__ = "0.1" +__version__ = "0.2" class DependencyItemStatus(object):