From b6587aef5bc76acac7064eec190747566ef2ea2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damien=20Nad=C3=A9?= Date: Sat, 16 Dec 2023 13:20:13 +0100 Subject: [PATCH] bump version to 0.12.4 --- CHANGELOG.md | 12 ++++++++++-- docs/source/conf.py | 2 +- kaioretry/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 991b660..255eabe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,14 +8,22 @@ ### New ### Changes -* Annotate class attributes as Final ### Fixes -* fix kaioretry.{retry,aioretry} metadata and related sphinx documentation ### Breaks +## 0.12.4 - (2023-12-16) +--- + +### Changes +* Annotate class attributes as Final + +### Fixes +* fix kaioretry.{retry,aioretry} metadata and related sphinx documentation + + ## 0.12.3 - (2023-12-13) --- diff --git a/docs/source/conf.py b/docs/source/conf.py index 13052ef..371fda7 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.3' +release = '0.12.4' # -- General configuration --------------------------------------------------- diff --git a/kaioretry/__init__.py b/kaioretry/__init__.py index 0ed2171..f9c0241 100644 --- a/kaioretry/__init__.py +++ b/kaioretry/__init__.py @@ -13,7 +13,7 @@ from .decorator import Retry -__version__ = "0.12.3" +__version__ = "0.12.4" RETRY_PARAMS_DOCSTRING = """ diff --git a/pyproject.toml b/pyproject.toml index eda5fa8..549df30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kaioretry" -version = "0.12.3" +version = "0.12.4" description = "All in one retry and aioretry decorators" authors = ["Damien Nadé "] license = "LGPL-2.1-or-later"