Skip to content

Commit 3acb529

Browse files
committed
v0.3.1
1 parent eaa5f53 commit 3acb529

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

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)