prep for 0.10 release

Change-Id: Ifce736e14ac1f6721b2188b4bcb8f78534faffd9
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
This commit is contained in:
Doug Hellmann 2013-07-08 09:25:42 -04:00
parent 8394651311
commit 4326707104
3 changed files with 14 additions and 16 deletions

View File

@ -1,6 +1,6 @@
=============== ================
stevedore 0.8 stevedore 0.10
=============== ================
.. tags:: stevedore release python .. tags:: stevedore release python
@ -25,17 +25,11 @@ dynamically loaded extensions.
What's New? What's New?
=========== ===========
- Add ``name_order`` parameter to ``NamedExtensionManager`` to coerce - Adds ``propagate_map_exceptions`` parameter to all of the extension
``map()`` into processing the extensions in the order they are named managers which specifies whether exceptions are propagated up
when the manager is created, instead of the random order they may through the map call or logged and then ignored. The default is to
have been loaded. Contributed by Daniel Rocco. preserve the current behavior of logging and ignoring exceptions.
- Change the ``NamedDispatchExtensionManager`` to ignore missing Christopher Yeoh <cyeoh@au1.ibm.com>
extensions (issue 14).
- Add ``__getitem__`` to ``ExtensionManager`` for looking up
individual plugins by name (issue 15).
- Start working on the tutorial
- Remove dependency on distribute, now that it is merged back into
setuptools 0.7 (issue 19).
Installing Installing
========== ==========

View File

@ -2,12 +2,16 @@
History History
========= =========
0.9 0.10
- Adds ``propagate_map_exceptions`` parameter to all of the extension - Adds ``propagate_map_exceptions`` parameter to all of the extension
managers which specifies whether exceptions are propagated up managers which specifies whether exceptions are propagated up
through the map call or logged and then ignored. The default is to through the map call or logged and then ignored. The default is to
preserve the current behavior of logging and ignoring exceptions. preserve the current behavior of logging and ignoring exceptions.
Christopher Yeoh <cyeoh@au1.ibm.com> Christopher Yeoh <cyeoh@au1.ibm.com>
0.9
- Add ``name_order`` parameter to - Add ``name_order`` parameter to
:class:`~stevedore.named.NamedExtensionManager` to coerce :class:`~stevedore.named.NamedExtensionManager` to coerce
:func:`map` into processing the extensions in the order they are :func:`map` into processing the extensions in the order they are

View File

@ -16,7 +16,7 @@ except ImportError:
setup( setup(
name='stevedore', name='stevedore',
version='0.9.1', version='0.10',
description='Manage dynamic plugins for Python applications', description='Manage dynamic plugins for Python applications',
long_description=long_description, long_description=long_description,