From a3049c6d9899e0388fdd54d72c1d10d902ed4660 Mon Sep 17 00:00:00 2001 From: amirreza Date: Fri, 31 Oct 2025 20:03:55 +0330 Subject: [PATCH] 0.3.2 --- CHANGES.md | 5 +++++ django_valkey/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 70e0c44..a9d6626 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +Version 0.3.2 +------------- + +- add `decr_version` method to be compatible with django's `BaseCache` + Version 0.3.1 ------------- diff --git a/django_valkey/__init__.py b/django_valkey/__init__.py index 9348322..8f72c58 100644 --- a/django_valkey/__init__.py +++ b/django_valkey/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 3, 1) +VERSION = (0, 3, 2) __version__ = ".".join(map(str, VERSION)) diff --git a/pyproject.toml b/pyproject.toml index 6fdb7d2..d5998ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "django-valkey" -version = "0.3.1" +version = "0.3.2" description = "a valkey backend for django" readme = "README.rst" requires-python = ">=3.10"