mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 09:57:37 +03:00 
			
		
		
		
	Bump version to 3.15.3
This commit is contained in:
		
							parent
							
								
									7ce170a1d9
								
							
						
					
					
						commit
						f8ddf1b19b
					
				| 
						 | 
				
			
			@ -18,19 +18,20 @@ Dependency Injector --- Dependency injection microframework for Python
 | 
			
		|||
.. _index:
 | 
			
		||||
 | 
			
		||||
*Dependency Injector* is a dependency injection microframework for Python.
 | 
			
		||||
It was designed to be unified, developer-friendly tool that helps to implement 
 | 
			
		||||
dependency injection design pattern in formal, pretty, Pythonic way. 
 | 
			
		||||
It was designed to be a unified and developer-friendly tool that helps
 | 
			
		||||
implement a dependency injection design pattern in a formal, pretty, and
 | 
			
		||||
Pythonic way.
 | 
			
		||||
 | 
			
		||||
*Dependency Injector* framework key features are:
 | 
			
		||||
The key features of the *Dependency Injector* framework are:
 | 
			
		||||
 | 
			
		||||
+ Easy, smart, pythonic style.
 | 
			
		||||
+ Obvious, clear structure.
 | 
			
		||||
+ Easy, smart, and pythonic style.
 | 
			
		||||
+ Obvious and clear structure.
 | 
			
		||||
+ Extensibility and flexibility.
 | 
			
		||||
+ High performance.
 | 
			
		||||
+ Memory efficiency.
 | 
			
		||||
+ Thread safety.
 | 
			
		||||
+ Documentation.
 | 
			
		||||
+ Semantic versioning.
 | 
			
		||||
+ Documented.
 | 
			
		||||
+ Semantically versioned.
 | 
			
		||||
 | 
			
		||||
*Dependency Injector* containers and providers are implemented as C extension
 | 
			
		||||
types using Cython.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -139,6 +139,6 @@ that could be used for further reading:
 | 
			
		|||
+ https://en.wikipedia.org/wiki/Dependency_injection
 | 
			
		||||
+ https://martinfowler.com/articles/injection.html
 | 
			
		||||
+ https://github.com/ets-labs/python-dependency-injector
 | 
			
		||||
+ https://pypi.python.org/pypi/dependency_injector
 | 
			
		||||
+ https://pypi.python.org/pypi/dependency-injector
 | 
			
		||||
 | 
			
		||||
.. disqus::
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -13,13 +13,14 @@ of Python objects and their dependencies in formal, pretty way.
 | 
			
		|||
 | 
			
		||||
*Dependency Injector* framework key features are:
 | 
			
		||||
 | 
			
		||||
+ Easy, smart, pythonic style.
 | 
			
		||||
+ Obvious, clear structure.
 | 
			
		||||
+ Easy, smart, and pythonic style.
 | 
			
		||||
+ Obvious and clear structure.
 | 
			
		||||
+ Extensibility and flexibility.
 | 
			
		||||
+ High performance.
 | 
			
		||||
+ Memory efficiency.
 | 
			
		||||
+ Thread safety.
 | 
			
		||||
+ Documentation.
 | 
			
		||||
+ Semantic versioning.
 | 
			
		||||
+ Documented.
 | 
			
		||||
+ Semantically versioned.
 | 
			
		||||
 | 
			
		||||
*Dependency Injector* framework could be used in different application types:
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -7,6 +7,12 @@ that were made in every particular version.
 | 
			
		|||
From version 0.7.6 *Dependency Injector* framework strictly 
 | 
			
		||||
follows `Semantic versioning`_
 | 
			
		||||
 | 
			
		||||
3.15.3
 | 
			
		||||
------
 | 
			
		||||
- Fix typo in the link to the PyPi on the "Dependency Injection in Python" documentation page.
 | 
			
		||||
- Fix a couple of typos in the list of key features on the "Key Features" and index documentation
 | 
			
		||||
  pages.
 | 
			
		||||
 | 
			
		||||
3.15.2
 | 
			
		||||
------
 | 
			
		||||
- Fix a typo in the installation instructions on the README page and in the documentation.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,6 +1,6 @@
 | 
			
		|||
"""Dependency injector top-level package."""
 | 
			
		||||
 | 
			
		||||
__version__ = '3.15.2'
 | 
			
		||||
__version__ = '3.15.3'
 | 
			
		||||
"""Version number that follows semantic versioning.
 | 
			
		||||
 | 
			
		||||
:type: str
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user