Skip to content

Commit fe73a70

Browse files
authored
Merge pull request #83 from amirreza8002/main
0.4.0
2 parents edf9f68 + a7ad711 commit fe73a70

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

AUTHORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ translate to valkey API:
2121
Amirreza Sohrabi far <https://github.com/amirreza8002>
2222
q0w <https://github.com/q0w>
2323
Christian Clauss <https://github.com/cclauss>
24+
Ülgen Sarıkavak https://github.com/ulgens

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
Version 0.4.0
2+
-------------
3+
14
### new
25
- added support for msgspec serialization (both json and msgpack)
6+
- support django 6
7+
- support python 3.14
38

49
### Breaking changes
10+
- dropped support for django 5.0 and 5.1
511
- `BackendCommands` and `AsyncBackendCommands` are no longer decorated with `omit_exception`.
612
- added `omit_exception_async` to decorate async operations, instead of using `omit_exception` for both sync and async.
713
- `omit_exception` no longer supports async functions and generators.

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, 2)
1+
VERSION = (0, 4, 0)
22
__version__ = ".".join(map(str, VERSION))
33

44

pyproject.toml

Lines changed: 1 addition & 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.2"
7+
version = "0.4.0"
88
description = "a valkey backend for django"
99
readme = "README.rst"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)