From 594831714df69657af75cac4fafecb0d6812d6dc Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Fri, 12 Jan 2024 15:24:17 +0100 Subject: [PATCH] Updated change notes and readme for 4.2 release. (#378) --- CHANGELOG.txt | 13 +++++++++++++ README.rst | 6 +++++- channels_redis/__init__.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index d2e282f..a6de0b3 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,16 @@ +4.2.0 (2024-01-12) +------------------ + +* Dropped support for end-of-life Python 3.7. + +* Added support for Python 3.11 and 3.12. + +* Upped the minimum version of redis-py to 4.6. + +* Added CI testing against redis-py versions 4.6, 5, and the development branch. + +* Added CI testing against Channels versions 3, 4, and the development branch. + 4.1.0 (2023-03-28) ------------------ diff --git a/README.rst b/README.rst index 1c5075f..2fa5626 100644 --- a/README.rst +++ b/README.rst @@ -19,6 +19,10 @@ There are two available implementations: Both layers support a single-server and sharded configurations. +`channels_redis` is tested against Python 3.8 to 3.12, `redis-py` versions 4.6, +5.0, and the development branch, and Channels versions 3, 4 and the development +branch there. + Installation ------------ @@ -75,7 +79,7 @@ SSL connections that are self-signed (ex: Heroku): "default": { "BACKEND": "channels_redis.pubsub.RedisPubSubChannelLayer", - "CONFIG": { + "CONFIG": { "hosts":[{ "address": "rediss://user@host:port", # "REDIS_TLS_URL" "ssl_cert_reqs": None, diff --git a/channels_redis/__init__.py b/channels_redis/__init__.py index 7039708..0fd7811 100644 --- a/channels_redis/__init__.py +++ b/channels_redis/__init__.py @@ -1 +1 @@ -__version__ = "4.1.0" +__version__ = "4.2.0"