Skip to content

Commit 81c61c2

Browse files
Version 4.2.1. (#2143)
Adds release notes, bumps version and adds the all important trove classifier for Django 5.2 Thanks to David Smith for review.
1 parent 1614226 commit 81c61c2

File tree

5 files changed

+32
-1
lines changed

5 files changed

+32
-1
lines changed

Diff for: CHANGELOG.txt

+16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
Full release notes, with more details and upgrade information, are available at:
22
https://channels.readthedocs.io/en/latest/releases
33

4+
5+
4.2.1 (2025-03-29)
6+
------------------
7+
8+
Channels 4.2.1 primarily updates the metadata for supported Python and Django
9+
versions.
10+
11+
* Added official support for Django 5.2 LTS.
12+
13+
* Added official support for Python 3.13.
14+
15+
* Added a warning for the length of the channel layer group names.
16+
17+
See also the `Version 4.2.1 release notes
18+
<https://channels.readthedocs.io/en/latest/releases/4.2.1.html>`_ in the docs.
19+
420
4.2.0 (2024-11-15)
521
------------------
622

Diff for: channels/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.2.0"
1+
__version__ = "4.2.1"
22

33

44
DEFAULT_CHANNEL_LAYER = "default"

Diff for: docs/releases/4.2.1.txt

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
4.2.1 Release Notes
2+
===================
3+
4+
Channels 4.2.1 is a bugfix release in the 4.1 series.
5+
6+
Bugfixes & Small Changes
7+
------------------------
8+
9+
* Added official support for Django 5.2 LTS.
10+
11+
* Added official support for Python 3.13.
12+
13+
* Added a warning for the length of the channel layer group names.

Diff for: docs/releases/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Release Notes
44
.. toctree::
55
:maxdepth: 1
66

7+
4.2.1
78
4.2.0
89
4.1.0
910
4.0.0

Diff for: setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers =
2626
Framework :: Django :: 4.2
2727
Framework :: Django :: 5.0
2828
Framework :: Django :: 5.1
29+
Framework :: Django :: 5.2
2930
Topic :: Internet :: WWW/HTTP
3031

3132
[options]

0 commit comments

Comments
 (0)