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"