Bump version to 0.6

Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
This commit is contained in:
Doug Hellmann 2012-10-29 11:38:27 -04:00
parent 3c64c7b71a
commit b01eb69915
3 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,5 @@
===============
stevedore 0.5
stevedore 0.6
===============
.. tags:: stevedore release python
@ -27,6 +27,9 @@ What's New?
- Add ``TestExtensionManager`` for writing tests for classes that use
extension managers.
- Change the ``EnabledExtensionManager`` to load the extension before
calling the check function so the plugin can be asked if it should
be enabled.
Installing
==========

View File

@ -2,6 +2,12 @@
History
=========
0.6
- Change the :class:`~stevedore.enabled.EnabledExtensionManager` to
load the extension before calling the check function so the plugin
can be asked if it should be enabled.
0.5
- Add :class:`~stevedore.tests.manager.TestExtensionManager` for

View File

@ -16,7 +16,7 @@ install_requires = ['distribute',
setup(
name='stevedore',
version='0.5',
version='0.6',
description='Manage dynamic plugins for Python applications',
long_description=long_description,