diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f802d185..8e865f4a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,21 @@ Changelog .. towncrier release notes start +django-redis 5.4.0 (2023-10-01) +=============================== + +Features +-------- + +- Connection factory goes to cache options (`#680 `_) + + +Documentation +------------- + +- Added note in docs for correctly configuring hiredis parser when using redis-py version 5. (`#677 `_) + + django-redis 5.3.0 (2023-06-16) =============================== diff --git a/changelog.d/677.doc b/changelog.d/677.doc deleted file mode 100644 index a0e0d999..00000000 --- a/changelog.d/677.doc +++ /dev/null @@ -1 +0,0 @@ -Added note in docs for correctly configuring hiredis parser when using redis-py version 5. diff --git a/changelog.d/680.feature b/changelog.d/680.feature deleted file mode 100644 index 07bd52b3..00000000 --- a/changelog.d/680.feature +++ /dev/null @@ -1 +0,0 @@ -Connection factory goes to cache options diff --git a/django_redis/__init__.py b/django_redis/__init__.py index f83bf322..7157dc68 100644 --- a/django_redis/__init__.py +++ b/django_redis/__init__.py @@ -1,4 +1,4 @@ -VERSION = (5, 3, 0) +VERSION = (5, 4, 0) __version__ = ".".join(map(str, VERSION))