From f529eec73d7e52d253735247dc770b680dea3898 Mon Sep 17 00:00:00 2001 From: Jakub Stasiak Date: Tue, 10 Dec 2019 02:25:28 +0100 Subject: [PATCH] Release version 0.18.1 --- CHANGES | 7 +++++++ injector/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index e5cf9e3..9b86362 100644 --- a/CHANGES +++ b/CHANGES @@ -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 ------ diff --git a/injector/__init__.py b/injector/__init__.py index ba4012a..64a8090 100644 --- a/injector/__init__.py +++ b/injector/__init__.py @@ -50,7 +50,7 @@ TYPING353 = hasattr(Union[str, int], '__origin__') __author__ = 'Alec Thomas ' -__version__ = '0.18.0' +__version__ = '0.18.1' __version_tag__ = '' log = logging.getLogger('injector')