From b00edad1b993ccc4ba135970444e74459c6278ae Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Sun, 26 Jan 2020 20:37:13 -0500 Subject: [PATCH] Bump version to 3.15.4 --- README.rst | 10 +++++----- docs/main/changelog.rst | 4 ++++ src/dependency_injector/__init__.py | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 9d778035..a50164ad 100644 --- a/README.rst +++ b/README.rst @@ -26,17 +26,17 @@ Status +---------------------------------------+--------------------------------------------------------------------------------------------------------------------+ | *PyPi* | .. image:: https://img.shields.io/pypi/v/dependency_injector.svg | -| | :target: https://pypi.python.org/pypi/dependency_injector/ | +| | :target: https://pypi.org/project/dependency-injector/ | | | :alt: Latest Version | | | .. image:: https://img.shields.io/pypi/l/dependency_injector.svg | -| | :target: https://pypi.python.org/pypi/dependency_injector/ | +| | :target: https://pypi.org/project/dependency-injector/ | | | :alt: License | +---------------------------------------+--------------------------------------------------------------------------------------------------------------------+ | *Python versions and implementations* | .. image:: https://img.shields.io/pypi/pyversions/dependency_injector.svg | -| | :target: https://pypi.python.org/pypi/dependency_injector/ | +| | :target: https://pypi.org/project/dependency-injector/ | | | :alt: Supported Python versions | | | .. image:: https://img.shields.io/pypi/implementation/dependency_injector.svg | -| | :target: https://pypi.python.org/pypi/dependency_injector/ | +| | :target: https://pypi.org/project/dependency-injector/ | | | :alt: Supported Python implementations | +---------------------------------------+--------------------------------------------------------------------------------------------------------------------+ | *Builds and tests coverage* | .. image:: https://travis-ci.org/ets-labs/python-dependency-injector.svg?branch=master | @@ -404,6 +404,6 @@ Your feedback is quite important! .. _Dependency injection: http://en.wikipedia.org/wiki/Dependency_injection .. _Inversion of control: https://en.wikipedia.org/wiki/Inversion_of_control -.. _PyPi: https://pypi.python.org/pypi/dependency_injector +.. _PyPi: https://pypi.org/project/dependency-injector/ .. _User's guide: http://python-dependency-injector.ets-labs.org/ .. _API docs: http://python-dependency-injector.ets-labs.org/api/ diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index fe8313d3..de8a7d8d 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.4 +------ +- Update a link to the PyPi page on the README page. + 3.15.3 ------ - Fix a typo in the link to the PyPi on the "Dependency Injection in Python" documentation page. diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index 2a76482f..68b2f205 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.3' +__version__ = '3.15.4' """Version number that follows semantic versioning. :type: str