mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 01:47:36 +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`_::
 | 
			
		||||
 | 
			
		||||
    pip install dependency_injector
 | 
			
		||||
    pip install dependency-injector
 | 
			
		||||
 | 
			
		||||
Documentation
 | 
			
		||||
-------------
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user