Skip to content

Commit c4a2135

Browse files
authored
Merge pull request #53 from amirreza8002/0.3.1
0.3.1
2 parents ed55a2e + 3acb529 commit c4a2135

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

AUTHORS.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,6 @@ Anès Foufa <https://github.com/AnesFoufa>
1818
Segyo Myung <https://github.com/myungsegyo>
1919

2020
translate to valkey API:
21-
Amirreza Sohrabi far <https://github.com/amirreza8002>
21+
Amirreza Sohrabi far <https://github.com/amirreza8002>
22+
q0w <https://github.com/q0w>
23+
Christian Clauss <https://github.com/cclauss>

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Version 0.3.1
2+
-------------
3+
4+
- allow access to `make_key` and `make_pattern` from backend
5+
- fix typos
6+
- update pre-commit hooks
7+
- add codespell
8+
- attend a deprecated function in testcase
9+
- add django 6 as supported version
10+
111
Version 0.3.0
212
-------------
313

django_valkey/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (0, 3, 0)
1+
VERSION = (0, 3, 1)
22
__version__ = ".".join(map(str, VERSION))
33

44

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "django-valkey"
7-
version = "0.3.0"
7+
version = "0.3.1"
88
description = "a valkey backend for django"
99
readme = "README.rst"
1010
requires-python = ">=3.10"
@@ -30,6 +30,8 @@ classifiers = [
3030
"Framework :: Django :: 5.0",
3131
"Framework :: Django :: 5.1",
3232
"Framework :: Django :: 5.2",
33+
"Framework :: Django :: 6",
34+
"Framework :: Django :: 6.0"
3335
]
3436

3537
dependencies = [

0 commit comments

Comments
 (0)