Skip to content

Commit 5948317

Browse files
Updated change notes and readme for 4.2 release. (#378)
1 parent dad0b13 commit 5948317

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.txt

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
4.2.0 (2024-01-12)
2+
------------------
3+
4+
* Dropped support for end-of-life Python 3.7.
5+
6+
* Added support for Python 3.11 and 3.12.
7+
8+
* Upped the minimum version of redis-py to 4.6.
9+
10+
* Added CI testing against redis-py versions 4.6, 5, and the development branch.
11+
12+
* Added CI testing against Channels versions 3, 4, and the development branch.
13+
114
4.1.0 (2023-03-28)
215
------------------
316

README.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ There are two available implementations:
1919

2020
Both layers support a single-server and sharded configurations.
2121

22+
`channels_redis` is tested against Python 3.8 to 3.12, `redis-py` versions 4.6,
23+
5.0, and the development branch, and Channels versions 3, 4 and the development
24+
branch there.
25+
2226
Installation
2327
------------
2428

@@ -75,7 +79,7 @@ SSL connections that are self-signed (ex: Heroku):
7579
7680
"default": {
7781
"BACKEND": "channels_redis.pubsub.RedisPubSubChannelLayer",
78-
"CONFIG": {
82+
"CONFIG": {
7983
"hosts":[{
8084
"address": "rediss://user@host:port", # "REDIS_TLS_URL"
8185
"ssl_cert_reqs": None,

channels_redis/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.1.0"
1+
__version__ = "4.2.0"

0 commit comments

Comments
 (0)