Release version 0.18.1

This commit is contained in:
Jakub Stasiak 2019-12-10 02:25:28 +01:00
parent dc84575580
commit f529eec73d
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,13 @@
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
------

View File

@ -50,7 +50,7 @@ TYPING353 = hasattr(Union[str, int], '__origin__')
__author__ = 'Alec Thomas <alec@swapoff.org>'
__version__ = '0.18.0'
__version__ = '0.18.1'
__version_tag__ = ''
log = logging.getLogger('injector')