Skip to content

Commit 667c6b0

Browse files
committed
doc:update
1 parent 8a09f51 commit 667c6b0

File tree

4 files changed

+127
-17
lines changed

4 files changed

+127
-17
lines changed

docs/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v2.1.0 🌈
4+
5+
### 🚀 Features
6+
- Support for custom `job-class`
7+
38
## v2.0.0 🌈
49

510
### Breaking Changes

docs/index.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,16 +121,24 @@ sequenceDiagram
121121

122122
## Reporting issues or Features requests
123123

124-
Please report issues via [GitHub Issues](https://github.com/django-commons/django-tasks-scheduler/issues) .
124+
Please report issues via [GitHub Issues][6] .
125125

126126
---
127127

128128
## Acknowledgements
129129

130-
A lot of django-admin views and their tests were adopted from [django-rq](https://github.com/rq/django-rq).
130+
A lot of django-admin views and their tests were adopted from [django-rq][7].
131131

132132
[1]:https://github.com/django-commons/django-tasks-scheduler/actions/workflows/test.yml/badge.svg
133+
133134
[2]:https://github.com/django-commons/django-tasks-scheduler/actions/workflows/test.yml
135+
134136
[3]:https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/cunla/b756396efb895f0e34558c980f1ca0c7/raw/django-tasks-scheduler-4.json
137+
135138
[4]:https://img.shields.io/pypi/dm/django-tasks-scheduler
139+
136140
[5]:https://pypi.org/project/django-tasks-scheduler/
141+
142+
[6]:https://github.com/django-commons/django-tasks-scheduler/issues
143+
144+
[7]:https://github.com/rq/django-rq

poetry.lock

Lines changed: 84 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "django-tasks-scheduler"
77
packages = [
88
{ include = "scheduler" },
99
]
10-
version = "2.0.1"
10+
version = "2.1.0"
1111
description = "An async job scheduler for django using redis"
1212
readme = "README.md"
1313
keywords = ["redis", "django", "background-jobs", "job-queue", "task-queue", "redis-queue", "scheduled-jobs"]
@@ -49,7 +49,8 @@ rq = "^1.16"
4949
pyyaml = { version = "^6.0", optional = true }
5050

5151
[tool.poetry.dev-dependencies]
52-
poetry = "^1.8.2"
52+
poetry = "^1.8.3"
53+
black = "^24.4.2"
5354
coverage = "^7.6"
5455
fakeredis = { version = "^2.21.5", extras = ['lua'] }
5556
Flake8-pyproject = "^1.2"
@@ -72,3 +73,28 @@ exclude = [
7273
include = [
7374
'scheduler',
7475
]
76+
77+
[tool.black]
78+
color = true
79+
line-length = 120
80+
target-version = ['py310']
81+
include = [
82+
"scheduler",
83+
"testproject",
84+
]
85+
exclude = '''
86+
(
87+
/(
88+
| \.git # root of the project
89+
| \.github
90+
| \.mypy_cache
91+
| \.tox
92+
| \.venv
93+
| _build
94+
| buck-out
95+
| build
96+
| dist
97+
)/
98+
| .*/__pycache__/.*
99+
)
100+
'''

0 commit comments

Comments
 (0)