From d322dc46a7f3ee6d03e5a0153d8015c3076f8bbb Mon Sep 17 00:00:00 2001 From: Bob Green Date: Wed, 5 Oct 2022 10:28:57 -0400 Subject: [PATCH] Prepare v2.2.0 release --- CHANGELOG.md | 6 ++++++ backoff/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12d6cd2..1495132 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [v2.2.0] - 2022-10-05 + +- Improve type annotation for wait generators from @hauntsaninja +- Include exception in details dict of call handlers from @petamas +- Improve type hints for call handlers from @cdce8p + ## [v2.1.2] - 2022-06-08 ### Fixed diff --git a/backoff/__init__.py b/backoff/__init__.py index 09941d5..4dabd24 100644 --- a/backoff/__init__.py +++ b/backoff/__init__.py @@ -27,4 +27,4 @@ 'random_jitter', ] -__version__ = "2.1.2" +__version__ = "2.2.0" diff --git a/pyproject.toml b/pyproject.toml index ec91ae8..b03daa0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "backoff" -version = "2.1.2" +version = "2.2.0" description = "Function decoration for backoff and retry" authors = ["Bob Green "] readme = "README.rst"