Release version 0.18.1
This commit is contained in:
parent
dc84575580
commit
f529eec73d
7
CHANGES
7
CHANGES
|
@ -1,6 +1,13 @@
|
||||||
Injector Change Log
|
Injector Change Log
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
0.18.1
|
||||||
|
------
|
||||||
|
|
||||||
|
- Fixed UnsatisfiedRequirement instantiation (trying to get its string representation would fail)
|
||||||
|
- Fixed injecting a subclass of a generic type on Python versions older than 3.7.0
|
||||||
|
- Fixed regression that caused BoundKey injection failure
|
||||||
|
|
||||||
0.18.0
|
0.18.0
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ TYPING353 = hasattr(Union[str, int], '__origin__')
|
||||||
|
|
||||||
|
|
||||||
__author__ = 'Alec Thomas <alec@swapoff.org>'
|
__author__ = 'Alec Thomas <alec@swapoff.org>'
|
||||||
__version__ = '0.18.0'
|
__version__ = '0.18.1'
|
||||||
__version_tag__ = ''
|
__version_tag__ = ''
|
||||||
|
|
||||||
log = logging.getLogger('injector')
|
log = logging.getLogger('injector')
|
||||||
|
|
Loading…
Reference in New Issue