From 80f54d6e9e84c5fc4309005a4aacbcdbdc9e814c Mon Sep 17 00:00:00 2001 From: Ghiles Meddour Date: Thu, 5 Dec 2024 11:12:46 +0100 Subject: [PATCH] release v0.2.8 --- CHANGELOG.md | 3 +++ README.md | 2 +- pyproject.toml | 2 +- src/pyfaktory/__init__.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9491525..d5346b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## Version 0.2.8 (2024-12-05) +- Add optional IPv6 support parameter (thanks @wangsrGit119) #18 + ## Version 0.2.7 (2024-12-01) - Add IPv6 support (thanks @ebramanti) diff --git a/README.md b/README.md index 122fe8e..1788e33 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ Import `pyfaktory`. from pyfaktory import Client, Consumer, Job, Producer ``` -A single client can act as both a consumer and a producer. +A single client can act as both a consumer and a producer. (You can enable IPv6 by setting `enable_ipv6` to `True`) ```python client = Client(faktory_url='tcp://localhost:7419') diff --git a/pyproject.toml b/pyproject.toml index ad4f0a5..a3f308c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyfaktory" -version = "0.2.7" +version = "0.2.8" 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 67bab18..95ff723 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.7" +__version__ = "0.2.8" __url__ = "https://github.com/ghilesmeddour/faktory_worker_python"