Merge branch 'release/3.15.2' into master

This commit is contained in:
Roman Mogylatov 2020-01-26 19:34:04 -05:00
commit 0dae54df18
4 changed files with 8 additions and 8 deletions

View File

@ -65,7 +65,7 @@ Installation
The *Dependency Injector* library is available on `PyPi`_::
pip install dependency_injector
pip install dependency-injector
Documentation
-------------

View File

@ -7,6 +7,10 @@ that were made in every particular version.
From version 0.7.6 *Dependency Injector* framework strictly
follows `Semantic versioning`_
3.15.2
------
- Fix a typo in the installation instructions on the README page and in the documentation.
3.15.1
------
- Fix a couple of typos in the README.

View File

@ -8,12 +8,8 @@ framework can be installed from PyPi_:
.. code-block:: bash
# Installing latest version:
pip install dependency_injector
pip install dependency-injector
# Installing particular version:
pip install dependency-injector==3.3.2
.. note::
Some components of *Dependency Injector* are implemented as C extension types.
*Dependency Injector* is distributed as an archive with a source code, so
@ -35,7 +31,7 @@ Verification of currently installed version could be done using
>>> import dependency_injector
>>> dependency_injector.__version__
'3.3.2'
'3.15.2'
.. _PyPi: https://pypi.python.org/pypi/dependency_injector
.. _GitHub: https://github.com/ets-labs/python-dependency-injector

View File

@ -1,6 +1,6 @@
"""Dependency injector top-level package."""
__version__ = '3.15.1'
__version__ = '3.15.2'
"""Version number that follows semantic versioning.
:type: str