diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b52860..70db820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,13 +9,19 @@ ### Changes +### Fixes + +### Breaks + + +## 0.12.2 - (2023-12-13) +--- + ### Fixes * finally fixed kaioretry._make_decorator type hinting issue * remove trailing spaces in generated static-analysis files in the reveal_type code block -### Breaks - ## 0.12.1 - (2023-12-10) --- diff --git a/docs/source/conf.py b/docs/source/conf.py index d04397c..54a9e1e 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.12.1' +release = '0.12.2' # -- General configuration --------------------------------------------------- diff --git a/kaioretry/__init__.py b/kaioretry/__init__.py index 72f6a17..955e4de 100644 --- a/kaioretry/__init__.py +++ b/kaioretry/__init__.py @@ -14,7 +14,7 @@ from .decorator import Retry -__version__ = "0.12.1" +__version__ = "0.12.2" RETRY_PARAMS_DOCSTRING = """ diff --git a/pyproject.toml b/pyproject.toml index e878e56..345a614 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kaioretry" -version = "0.12.1" +version = "0.12.2" description = "All in one retry and aioretry decorators" authors = ["Damien Nadé "] license = "LGPL-2.1-or-later"