From e6541ed14e945d8f49e91268b2c5fcc85b766df9 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Mon, 6 Dec 2010 19:01:50 +0100 Subject: [PATCH] bump version and fix changelog issue reference --- CHANGELOG | 2 +- pytest.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f981acb63..d8641ac64 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,7 @@ Changes between 2.0.0 and 2.0.1.dev1 ---------------------------------------------- -- fix issue10: assert failures in doctest modules. +- fix issue7: assert failures in doctest modules. unexpected failures in doctests will not generally show nicer, i.e. within the doctest failing context. - fix issue9: setup/teardown functions for an xfail-marked diff --git a/pytest.py b/pytest.py index 3d52272a5..615af2328 100644 --- a/pytest.py +++ b/pytest.py @@ -1,7 +1,7 @@ """ unit and functional testing with Python. """ -__version__ = '2.0.1.dev1' +__version__ = '2.0.1.dev3' __all__ = ['main'] from _pytest.core import main, UsageError, _preloadplugins diff --git a/setup.py b/setup.py index dfae78d7c..7add3678c 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def main(): name='pytest', description='py.test: simple powerful testing with Python', long_description = long_description, - version='2.0.1.dev1', + version='2.0.1.dev3', url='http://pytest.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],