From 7bab206a43ca39f2d7802c39f39ce3378f106c74 Mon Sep 17 00:00:00 2001 From: Ghiles Meddour Date: Wed, 28 Aug 2024 17:43:19 +0200 Subject: [PATCH] new release --- CHANGELOG.md | 3 +++ pyproject.toml | 2 +- src/pyfaktory/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf21610..af807ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## Version 0.2.4 (2024-08-28) +- Fix queue Pause and Resume (thanks @wangsrGit119) + ## Version 0.2.3 (2024-01-25) - Enable TCP Keep-Alives (thanks @TurtleSRE) - Add MIT license diff --git a/pyproject.toml b/pyproject.toml index 53db4fd..e83bcb7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyfaktory" -version = "0.2.3" +version = "0.2.4" description = "Faktory Client Python (Producer and Consumer/Worker)" license = "MIT" authors = ["Ghiles Meddour "] diff --git a/src/pyfaktory/__init__.py b/src/pyfaktory/__init__.py index 24a1a5a..5bbe69b 100644 --- a/src/pyfaktory/__init__.py +++ b/src/pyfaktory/__init__.py @@ -4,5 +4,5 @@ from .producer import Producer from .util.exceptions import * -__version__ = "0.2.3" +__version__ = "0.2.4" __url__ = "https://github.com/ghilesmeddour/faktory_worker_python"