From c0f0cc2b81cb44fcef13c2e53bac87ab4fd4a9a7 Mon Sep 17 00:00:00 2001 From: Bashir ABDEL WAHED Date: Tue, 12 Nov 2024 14:49:00 +0100 Subject: [PATCH] chg: :bookmark: preparing v0.5.2 --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- tawazi/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8970400..1e90903 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## v0.5.2 (2024-11-12) + +### Bug Fixes +* :bug: typing with py310 Union | + ## v0.5.1 (2024-10-31) ### Changes diff --git a/pyproject.toml b/pyproject.toml index a23f9e2..bf4a8d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" [project] name = "tawazi" -version = "0.5.1" +version = "0.5.2" description = "This library helps you execute a set of functions in a Directed Acyclic Graph (DAG) dependency structure in parallel in a production environment." authors = [{name = "Mindee", email = "contact@mindee.com"}] maintainers = [ diff --git a/tawazi/__init__.py b/tawazi/__init__.py index 880e810..ac5a218 100644 --- a/tawazi/__init__.py +++ b/tawazi/__init__.py @@ -7,7 +7,7 @@ from .config import cfg from .consts import Resource -__version__ = "0.5.1" +__version__ = "0.5.2" __all__ = [ "AsyncDAG",