Skip to content

Commit

Permalink
Updated change notes and readme for 4.2 release. (#378)
Browse files Browse the repository at this point in the history
  • Loading branch information
carltongibson committed Jan 12, 2024
1 parent dad0b13 commit 5948317
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -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)
------------------

Expand Down
6 changes: 5 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
------------

Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion channels_redis/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.1.0"
__version__ = "4.2.0"

0 comments on commit 5948317

Please sign in to comment.