Skip to content

Commit

Permalink
prep 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerickel committed Nov 29, 2020
1 parent 4bc208d commit 6b6a3e8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
0.3 (2020-11-29)
================

- Added the ``__wired_factory__`` protocol which enables classes/functions.
This feature allows objects to declare their factory in a reusable way
near the definition of the class/function instead of near the
``ServiceRegistry.register_factory`` invocation. Build some decorators
that automatically inject this protocol!
See https://github.com/mmerickel/wired/pull/41

- Added the ``wired.service_factory`` venusian decorator which can be used
to discover factories by setting up a ``venusian.Scanner`` and scanning
your code to auto-register the services. In the future ``wired`` will likely
provide top-level scanning, but for now you have to do it yourself and
there are examples in the docs.
See https://github.com/mmerickel/wired/pull/41

0.2.2 (2020-05-26)
==================

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def readfile(name):
'An inversion-of-control (IoC) container for building decoupled, '
'configurable, pluggable applications.'
),
version='0.2.2',
version='0.3',
long_description=readme + '\n\n' + changes,
long_description_content_type='text/x-rst',
author='Michael Merickel',
Expand Down

0 comments on commit 6b6a3e8

Please sign in to comment.