Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ Anès Foufa <https://github.com/AnesFoufa>
Segyo Myung <https://github.com/myungsegyo>

translate to valkey API:
Amirreza Sohrabi far <https://github.com/amirreza8002>
Amirreza Sohrabi far <https://github.com/amirreza8002>
q0w <https://github.com/q0w>
Christian Clauss <https://github.com/cclauss>
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Version 0.3.1
-------------

- allow access to `make_key` and `make_pattern` from backend
- fix typos
- update pre-commit hooks
- add codespell
- attend a deprecated function in testcase
- add django 6 as supported version

Version 0.3.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion django_valkey/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 3, 0)
VERSION = (0, 3, 1)
__version__ = ".".join(map(str, VERSION))


Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "django-valkey"
version = "0.3.0"
version = "0.3.1"
description = "a valkey backend for django"
readme = "README.rst"
requires-python = ">=3.10"
Expand All @@ -30,6 +30,8 @@ classifiers = [
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6",
"Framework :: Django :: 6.0"
]

dependencies = [
Expand Down
Loading