diff --git a/VERSION b/VERSION index 6f4eebdf..f374f666 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.1 +0.9.1 diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index ec8908b9..5e75448d 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -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.