Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated change notes and readme for 4.2 release. #378

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"