From 05ad3e87bb179ce56cabb272bd5f75cca2880f7c Mon Sep 17 00:00:00 2001 From: Ivan Korobkov Date: Mon, 17 Aug 2020 20:51:44 +0300 Subject: [PATCH] Version 4.3.1. --- CHANGES.md | 3 +++ inject/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 441b84c..8255565 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,9 @@ python-inject changes ===================== +### 4.3.1 (2020-08-17) +- Use assertRaisesRegex instead of assertRaisesRegexp to fix deprecation warnings. + ### 4.3.0 (2020-08-11) - Support for classes in autoparams, #59. - Support for asyncio, #66. diff --git a/inject/__init__.py b/inject/__init__.py index bc7eec1..b6109a5 100644 --- a/inject/__init__.py +++ b/inject/__init__.py @@ -73,7 +73,7 @@ def my_config(binder): inject.configure(my_config) """ -__version__ = '4.3.0' +__version__ = '4.3.1' __author__ = 'Ivan Korobkov ' __license__ = 'Apache License 2.0' __url__ = 'https://github.com/ivan-korobkov/python-inject' diff --git a/setup.py b/setup.py index 4cda2fe..f03a5fc 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read_description(): setup( name='Inject', - version='4.3.0', + version='4.3.1', url='https://github.com/ivankorobkov/python-inject', license='Apache License 2.0',