diff --git a/CHANGES b/CHANGES index 6405f94..70c6529 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,11 @@ Injector Change Log =================== +0.18.4 +------ + +- Fixed a bug where only one of multiple NoInject annotations was interpreted + 0.18.3 ------ diff --git a/injector/__init__.py b/injector/__init__.py index 4ddb3bf..3eb36af 100644 --- a/injector/__init__.py +++ b/injector/__init__.py @@ -81,7 +81,7 @@ TYPING353 = hasattr(Union[str, int], '__origin__') __author__ = 'Alec Thomas ' -__version__ = '0.18.3' +__version__ = '0.18.4' __version_tag__ = '' log = logging.getLogger('injector')