diff --git a/CHANGELOG.md b/CHANGELOG.md index 71a4792..a51b6c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog + ## Unreleased --- @@ -9,11 +10,17 @@ ### Changes ### Fixes -* Add missing sphinx-rtd-theme documentation dependencies ### Breaks +## 0.11.1 - (2023-11-25) +--- + +### Fixes +* Add missing sphinx-rtd-theme documentation dependencies + + ## 0.11.0 - (2023-11-25) --- diff --git a/docs/source/conf.py b/docs/source/conf.py index 65ac46e..77fc221 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = 'Damien Nadé' # The full version, including alpha/beta/rc tags -release = '0.11.0' +release = '0.11.1' # -- General configuration --------------------------------------------------- diff --git a/kaioretry/__init__.py b/kaioretry/__init__.py index 0a1a5dd..3641caa 100644 --- a/kaioretry/__init__.py +++ b/kaioretry/__init__.py @@ -13,7 +13,7 @@ from .decorator import Retry -__version__ = "0.11.0" +__version__ = "0.11.1" RETRY_PARAMS_DOCSTRING = """ diff --git a/pyproject.toml b/pyproject.toml index aeb7d21..72c787c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kaioretry" -version = "0.11.0" +version = "0.11.1" description = "All in one retry and aioretry decorators" authors = ["Damien Nadé "] license = "LGPL-2.1-or-later"