From 0777a0f1d184e03455a1eddf978043163f94b47d Mon Sep 17 00:00:00 2001 From: Bob Green Date: Sat, 7 Dec 2019 16:03:37 -0500 Subject: [PATCH] Prepare 1.10.0 release --- CHANGELOG.md | 5 +++++ backoff/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6a333a..4432a3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -141,3 +141,8 @@ ### Changed - Don't include tests and changelog in distribution + +## [v1.10.0] 2019-12-7 +### Changed + +- Allow sync decorator call from async function diff --git a/backoff/__init__.py b/backoff/__init__.py index b95d71c..fc00001 100644 --- a/backoff/__init__.py +++ b/backoff/__init__.py @@ -26,4 +26,4 @@ 'random_jitter' ] -__version__ = '1.9.2' +__version__ = '1.10.0' diff --git a/pyproject.toml b/pyproject.toml index be973a2..3469bf2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "backoff" -version = "1.9.2" +version = "1.10.0" description = "Function decoration for backoff and retry" authors = ["Bob Green "] readme = "README.rst"