Skip to content

Commit 957d4e1

Browse files
committed
update documentation and version
1 parent 5e6428c commit 957d4e1

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

docs/changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v2.1.1 🌈
4+
5+
### 🐛 Bug Fixes
6+
7+
- Support for valkey sentinel configuration @amirreza8002 (#191)
8+
39
## v2.1.0 🌈
410

511
### 🚀 Features

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ name = "django-tasks-scheduler"
77
packages = [
88
{ include = "scheduler" },
99
]
10-
version = "2.1.0"
11-
description = "An async job scheduler for django using redis"
10+
version = "2.1.1"
11+
description = "An async job scheduler for django using redis/valkey brokers"
1212
readme = "README.md"
13-
keywords = ["redis", "django", "background-jobs", "job-queue", "task-queue", "redis-queue", "scheduled-jobs"]
13+
keywords = ["redis", "valkey", "django", "background-jobs", "job-queue", "task-queue", "redis-queue", "scheduled-jobs"]
1414
authors = [
1515
"Daniel Moran <[email protected]>",
1616
]

scheduler/broker_types.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# This is a helper module to obfuscate types used by different broker implementations.
12
from typing import Union, Dict, Tuple, Type
23

34
import redis

0 commit comments

Comments
 (0)