Skip to content

Commit

Permalink
Merge branch 'release/3.15.2' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
rmk135 committed Jan 27, 2020
2 parents 363b87f + 7ce170a commit 0dae54d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -65,7 +65,7 @@ Installation

The *Dependency Injector* library is available on `PyPi`_::

pip install dependency_injector
pip install dependency-injector

Documentation
-------------
Expand Down
4 changes: 4 additions & 0 deletions docs/main/changelog.rst
Expand Up @@ -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.
Expand Down
8 changes: 2 additions & 6 deletions docs/main/installation.rst
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/dependency_injector/__init__.py
@@ -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
Expand Down

0 comments on commit 0dae54d

Please sign in to comment.