Skip to content

Commit

Permalink
Bumped version and change notes for 3.0.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
carltongibson committed Nov 12, 2020
1 parent aae0870 commit aac4708
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
3.0.1 (2020-11-12)
------------------

* Fixed a bug where ``asyncio.CancelledError`` was not correctly handled on
Python 3.8+, resulting in incorrect protocol application cleanup.


3.0.0 (2020-10-28)
------------------

Expand All @@ -12,6 +19,7 @@

* Dropped support for Python 3.5.


2.5.0 (2020-04-15)
------------------

Expand All @@ -23,13 +31,15 @@
``lock`` argument to ``__init__()``. This is expected to be an instance of
``multiprocessing.Lock``.


2.4.1 (2019-12-18)
------------------

* Avoids Twisted using the default event loop, for compatibility with Django
3.0's ``async_unsafe()`` decorator in threaded contexts, such as using the
auto-reloader.


2.4.0 (2019-11-20)
------------------

Expand All @@ -47,11 +57,13 @@

* Adds missing LICENSE to distribution.


2.3.0 (2019-04-09)
------------------

* Added support for ASGI v3.


2.2.5 (2019-01-31)
------------------

Expand Down
2 changes: 1 addition & 1 deletion daphne/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

__version__ = "3.0.0"
__version__ = "3.0.1"


# Windows on Python 3.8+ uses ProactorEventLoop, which is not compatible with
Expand Down

0 comments on commit aac4708

Please sign in to comment.