Update changelog

This commit is contained in:
Roman Mogylatov 2020-09-07 12:34:49 -04:00
parent 36ece67586
commit d93c4a419b
4 changed files with 13 additions and 6 deletions

View File

@ -2,11 +2,9 @@ Other examples
==============
.. meta::
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
:description: Current section of documentation is designed to provide
several example mini applications that are built on the top
of inversion of control principle and powered by
"Dependency Injector" framework.
:keywords: Python,Dependency Injection,Inversion of Control,Container,Example,Application,
Framework
:description: This sections contains assorted Dependency Injector examples.
This sections contains assorted ``Dependency Injector`` examples.

View File

@ -1,6 +1,11 @@
Password hashing example
========================
.. meta::
:keywords: Python,Dependency Injection,Inversion of Control,Container,Example,Application,
Framework,Callable
:description: This example demonstrates a usage of the Callable provider.
This example demonstrates an injection of the ``Callable`` provider.
The source code is available on the `Github <https://github.com/ets-labs/python-dependency-injector/tree/master/examples/miniapps/password-hashing>`_.

View File

@ -1,7 +1,10 @@
Use cases example
=================
.. currentmodule:: dependency_injector.providers
.. meta::
:keywords: Python,Dependency Injection,Inversion of Control,Container,Example,Application,
Framework,DependenciesContainer
:description: This example demonstrates a usage of the DependenciesContainer provider.
This example demonstrates a usage of the ``DependenciesContainer`` provider.

View File

@ -9,6 +9,7 @@ follows `Semantic versioning`_
Develop
-------
- Refactor "use cases" example.
- Refactor "password hashing" example.
- Fix declarative container mypy stub to ``__init__`` to accept not only providers.
- Refactor main module of the "decoupled packages" example.