diff --git a/CHANGES.rst b/CHANGES.rst index 7b91d31..90bafe3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +Version 0.1.3 +------------- + +- Moved some method implementation out of BaseConnectionFactory class + +- added a guide to use the base classes + + Version 0.1.2 ------------- diff --git a/django_valkey/__init__.py b/django_valkey/__init__.py index 2dd2f3b..1420f0d 100644 --- a/django_valkey/__init__.py +++ b/django_valkey/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 1, 2) +VERSION = (0, 1, 3) __version__ = ".".join(map(str, VERSION)) diff --git a/pyproject.toml b/pyproject.toml index fe5ad2a..1935d13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-valkey" -version = "0.1.2" +version = "0.1.3" license = "BSD-3-Caluse" description = "a valkey backend for django, forked from django-redis" authors = ["amirreza "]