From d93c4a419bb70374517a1acf9e9ebf885e65971c Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Mon, 7 Sep 2020 12:34:49 -0400 Subject: [PATCH] Update changelog --- docs/examples-other/index.rst | 8 +++----- docs/examples-other/password-hashing.rst | 5 +++++ docs/examples-other/use-cases.rst | 5 ++++- docs/main/changelog.rst | 1 + 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/docs/examples-other/index.rst b/docs/examples-other/index.rst index c0735f51..8dc717f1 100644 --- a/docs/examples-other/index.rst +++ b/docs/examples-other/index.rst @@ -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. diff --git a/docs/examples-other/password-hashing.rst b/docs/examples-other/password-hashing.rst index 538a6bfa..be12f713 100644 --- a/docs/examples-other/password-hashing.rst +++ b/docs/examples-other/password-hashing.rst @@ -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 `_. diff --git a/docs/examples-other/use-cases.rst b/docs/examples-other/use-cases.rst index 0e59c3b9..9f191e39 100644 --- a/docs/examples-other/use-cases.rst +++ b/docs/examples-other/use-cases.rst @@ -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. diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index bdee1c99..b894247b 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -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.