Release 0.9.1

This commit is contained in:
Roman Mogilatov 2015-09-03 00:27:56 +03:00
parent 50a3db6b94
commit 4291f0efc1
2 changed files with 14 additions and 9 deletions

View File

@ -1 +1 @@
0.8.1
0.9.1

View File

@ -11,14 +11,19 @@ follows `Semantic versioning`_
Development version
-------------------
- Add simplified syntax of kwarg injections for ``Factory`` and ``Singleton``
providers: ``Factory(SomeClass, dependency1=injectable_provider_or_value)``.
- Add simplified syntax of kwarg injections for ``Callable`` provider:
``Callable(some_callable, dependency1=injectable_provider_or_value)``
- Add simplified syntax of kwarg injections for ``@inject`` decorator:
``@inject(dependency1=injectable_provider_or_value)``.
- Optimize ``@inject`` decorations when they were made several times for the
same callback.
- No featues.
0.9.1
-----
- Add simplified syntax of kwarg injections for ``di.Factory`` and
``di.Singleton`` providers:
``di.Factory(SomeClass, dependency1=injectable_provider_or_value)``.
- Add simplified syntax of kwarg injections for ``di.Callable`` provider:
``di.Callable(some_callable, dependency1=injectable_provider_or_value)``
- Add simplified syntax of kwarg injections for ``@di.inject`` decorator:
``@di.inject(dependency1=injectable_provider_or_value)``.
- Optimize ``@di.inject()`` decorations when they were made several times for
the same callback.
- Add minor refactorings.
- Fix of minor documentation issues.