8000 Merge branch 'release/3.13.1' into master · GrxE/python-dependency-injector@1cd3bd1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1cd3bd1

Browse files
committed
Merge branch 'release/3.13.1' into master
2 parents 1c0f2e7 + 883fc95 commit 1cd3bd1

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

docs/examples/chained_factories.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ Chained Factories pattern
22
=========================
33

44
This example demonstrate implementation of "Chained Factories" pattern.
5-
Main idea of this pattern is about wrapping `Factory` into other `Factory`
6-
that mix additional arguments or keyword arguments to a wrapped one.
5+
Main idea of this pattern is about wrapping :py:class:`Factory` into
6+
another :py:class:`Factory` that mix additional arguments or keyword
7+
arguments to a wrapped one.
78

89
Listing of ``data.py``, demonstrates sample classes structure:
910

docs/main/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ that were made in every particular version.
77
From version 0.7.6 *Dependency Injector* framework strictly
88
follows `Semantic versioning`_
99

10+
3.13.1
11+
------
12+
- Fix typo on "Chained Factories" pattern docs page.
13+
1014
3.13.0
1115
------
1216
- Add Python 3.7 support.

src/dependency_injector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Dependency injector top-level package."""
22

3-
__version__ = '3.13.0'
3+
__version__ = '3.13.1'
44
"""Version number that follows semantic versioning.
55
66
:type: str

0 commit comments

Comments
 (0)
0