diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 82521fe..5df13c7 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,8 @@ +4.1.2 (2024-04-11) +------------------ + +* Fixed a setuptools configuration error in 4.1.1. + 4.1.1 (2024-04-10) ------------------ diff --git a/daphne/__init__.py b/daphne/__init__.py index ee354c7..19ba8ff 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1,6 +1,6 @@ import sys -__version__ = "4.1.1" +__version__ = "4.1.2" # Windows on Python 3.8+ uses ProactorEventLoop, which is not compatible with diff --git a/setup.cfg b/setup.cfg index cef2824..8e08789 100644 --- a/setup.cfg +++ b/setup.cfg @@ -25,10 +25,8 @@ classifiers = [options] package_dir = + daphne=daphne twisted=daphne/twisted -packages = - daphne - twisted.plugins include_package_data = True install_requires = asgiref>=3.5.2,<4