mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 09:57:37 +03:00 
			
		
		
		
	Merge branch 'release/3.15.2' into master
This commit is contained in:
		
						commit
						0dae54df18
					
				| 
						 | 
					@ -65,7 +65,7 @@ Installation
 | 
				
			||||||
 | 
					
 | 
				
			||||||
The *Dependency Injector* library is available on `PyPi`_::
 | 
					The *Dependency Injector* library is available on `PyPi`_::
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    pip install dependency_injector
 | 
					    pip install dependency-injector
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Documentation
 | 
					Documentation
 | 
				
			||||||
-------------
 | 
					-------------
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -7,6 +7,10 @@ that were made in every particular version.
 | 
				
			||||||
From version 0.7.6 *Dependency Injector* framework strictly 
 | 
					From version 0.7.6 *Dependency Injector* framework strictly 
 | 
				
			||||||
follows `Semantic versioning`_
 | 
					follows `Semantic versioning`_
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					3.15.2
 | 
				
			||||||
 | 
					------
 | 
				
			||||||
 | 
					- Fix a typo in the installation instructions on the README page and in the documentation.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
3.15.1
 | 
					3.15.1
 | 
				
			||||||
------
 | 
					------
 | 
				
			||||||
- Fix a couple of typos in the README.
 | 
					- Fix a couple of typos in the README.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -8,11 +8,7 @@ framework can be installed from PyPi_:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.. code-block:: bash
 | 
					.. 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::
 | 
					.. note::
 | 
				
			||||||
    Some components of *Dependency Injector* are implemented as C extension types. 
 | 
					    Some components of *Dependency Injector* are implemented as C extension types. 
 | 
				
			||||||
| 
						 | 
					@ -35,7 +31,7 @@ Verification of currently installed version could be done using
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    >>> import dependency_injector
 | 
					    >>> import dependency_injector
 | 
				
			||||||
    >>> dependency_injector.__version__
 | 
					    >>> dependency_injector.__version__
 | 
				
			||||||
    '3.3.2'
 | 
					    '3.15.2'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.. _PyPi: https://pypi.python.org/pypi/dependency_injector
 | 
					.. _PyPi: https://pypi.python.org/pypi/dependency_injector
 | 
				
			||||||
.. _GitHub: https://github.com/ets-labs/python-dependency-injector
 | 
					.. _GitHub: https://github.com/ets-labs/python-dependency-injector
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
"""Dependency injector top-level package."""
 | 
					"""Dependency injector top-level package."""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
__version__ = '3.15.1'
 | 
					__version__ = '3.15.2'
 | 
				
			||||||
"""Version number that follows semantic versioning.
 | 
					"""Version number that follows semantic versioning.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
:type: str
 | 
					:type: str
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user