Skip to content

Commit

Permalink
release v0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ghilesmeddour committed Dec 5, 2024
1 parent 6bbe454 commit 80f54d6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/pyfaktory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 80f54d6

Please sign in to comment.