From dde621a43758732a7061b2a0a6c6aec4971acdf6 Mon Sep 17 00:00:00 2001 From: Rolf Krahl Date: Sun, 28 May 2017 09:56:36 +0200 Subject: [PATCH] Prepare for release 0.2. --- CHANGES | 4 ++-- doc/src/conf.py | 4 ++-- pytest_dependency.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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):