We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f9b79c commit a79a17cCopy full SHA for a79a17c
CHANGELOG.md
@@ -156,3 +156,8 @@
156
### NOTE
157
158
THIS WILL BE THE FINAL PYTHON 2.7 COMPATIBLE RELEASE.
159
+
160
+## [v1.11.1] 2021-07-14
161
+### Changed
162
163
+- Update __version__ in backoff module
backoff/__init__.py
@@ -29,7 +29,7 @@
29
'random_jitter',
30
]
31
32
-__version__ = '1.11.0'
+__version__ = '1.11.1'
33
34
35
if sys.version_info[0] < 3:
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "backoff"
3
-version = "1.11.0"
+version = "1.11.1"
4
description = "Function decoration for backoff and retry"
5
authors = ["Bob Green <[email protected]>"]
6
readme = "README.rst"
0 commit comments