From 5bef795ba77fd41570ee76eb4f71399849f98a36 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Sat, 5 Mar 2011 18:22:33 +0100 Subject: [PATCH] add changelog entry about unittest change, bump version --- CHANGELOG | 2 ++ pytest.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 937e491bc..e7750ff8e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -34,6 +34,8 @@ Changes between 2.0.1 and 2.0.2 - more precise (avoiding of) deprecation warnings for node.Class|Function accesses +- avoid std unittest assertion helper code in tracebacks (thanks Ronny) + Changes between 2.0.0 and 2.0.1 ---------------------------------------------- diff --git a/pytest.py b/pytest.py index 03658acb2..eb8e4b37d 100644 --- a/pytest.py +++ b/pytest.py @@ -1,7 +1,7 @@ """ unit and functional testing with Python. """ -__version__ = '2.0.2.dev3' +__version__ = '2.0.2.dev4' __all__ = ['main'] from _pytest.core import main, UsageError, _preloadplugins diff --git a/setup.py b/setup.py index 25bbb893d..464a40946 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.2.dev3', + version='2.0.2.dev4', url='http://pytest.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],