diff --git a/README.rst b/README.rst index 6e3c696c..9d778035 100644 --- a/README.rst +++ b/README.rst @@ -65,7 +65,7 @@ Installation The *Dependency Injector* library is available on `PyPi`_:: - pip install dependency_injector + pip install dependency-injector Documentation ------------- diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 47d32c87..21067b59 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -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. diff --git a/docs/main/installation.rst b/docs/main/installation.rst index 359d9094..bfd2b0aa 100644 --- a/docs/main/installation.rst +++ b/docs/main/installation.rst @@ -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 diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index 9a8a47c6..65071bd8 100644 --- a/src/dependency_injector/__init__.py +++ b/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