summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug.hellmann@dreamhost.com>2012-10-29 11:38:27 -0400
committerDoug Hellmann <doug.hellmann@dreamhost.com>2012-10-29 11:38:27 -0400
commitb01eb699157fb59680b09ef6050978cc95d60243 (patch)
treeee8facdee61cbc2568b240351640d5e5fecfa800
parent3c64c7b71a7bc87d2717f278dc4cf5d9e2c67973 (diff)
downloadstevedore-b01eb699157fb59680b09ef6050978cc95d60243.tar.gz
Bump version to 0.60.6
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
-rw-r--r--announce.rst5
-rw-r--r--docs/source/history.rst6
-rw-r--r--setup.py2
3 files changed, 11 insertions, 2 deletions
diff --git a/announce.rst b/announce.rst
index b222e51..756d2e8 100644
--- a/announce.rst
+++ b/announce.rst
@@ -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
==========
diff --git a/docs/source/history.rst b/docs/source/history.rst
index 0e87365..39665a9 100644
--- a/docs/source/history.rst
+++ b/docs/source/history.rst
@@ -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
diff --git a/setup.py b/setup.py
index 154fdb5..6e3f179 100644
--- a/setup.py
+++ b/setup.py
@@ -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,