diff --git a/CHANGELOG.md b/CHANGELOG.md index 1495132..14ab5ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v2.2.1] - 2022-10-05 + +- Fix type hint for wait generators https://github.com/litl/backoff/issues/177 + ## [v2.2.0] - 2022-10-05 - Improve type annotation for wait generators from @hauntsaninja diff --git a/backoff/__init__.py b/backoff/__init__.py index 4dabd24..196274d 100644 --- a/backoff/__init__.py +++ b/backoff/__init__.py @@ -27,4 +27,4 @@ 'random_jitter', ] -__version__ = "2.2.0" +__version__ = "2.2.1" diff --git a/pyproject.toml b/pyproject.toml index b03daa0..e0a6180 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "backoff" -version = "2.2.0" +version = "2.2.1" description = "Function decoration for backoff and retry" authors = ["Bob Green "] readme = "README.rst"