add changelog entry about unittest change, bump version

This commit is contained in:
holger krekel 2011-03-05 18:22:33 +01:00
parent a6c518e68c
commit 5bef795ba7
3 changed files with 4 additions and 2 deletions

View File

@ -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
----------------------------------------------

View File

@ -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

View File

@ -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'],