diff --git a/AUTHORS.rst b/AUTHORS.rst index 5c70d23..a8e66f8 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -18,4 +18,6 @@ Anès Foufa Segyo Myung translate to valkey API: -Amirreza Sohrabi far \ No newline at end of file +Amirreza Sohrabi far +q0w +Christian Clauss diff --git a/CHANGES.md b/CHANGES.md index c220cc1..70e0c44 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 ------------- diff --git a/django_valkey/__init__.py b/django_valkey/__init__.py index e92432a..9348322 100644 --- a/django_valkey/__init__.py +++ b/django_valkey/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 3, 0) +VERSION = (0, 3, 1) __version__ = ".".join(map(str, VERSION)) diff --git a/pyproject.toml b/pyproject.toml index 1d075c3..a7cc35a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" @@ -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 = [