mirror of
https://github.com/django/daphne.git
synced 2025-04-20 08:42:18 +03:00
Version 0.9
This commit is contained in:
parent
3b8feb5b96
commit
73f840432d
26
CHANGELOG.txt
Normal file
26
CHANGELOG.txt
Normal file
|
@ -0,0 +1,26 @@
|
|||
0.9 (2016-02-21)
|
||||
----------------
|
||||
|
||||
* Staticfiles support in runserver
|
||||
|
||||
* Runserver logs requests and WebSocket connections to console
|
||||
|
||||
* Runserver autoreloads correctly
|
||||
|
||||
* --noasgi option on runserver to use the old WSGI-based server
|
||||
|
||||
* --noworker option on runserver to make it not launch worker threads
|
||||
|
||||
* Streaming responses work correctly
|
||||
|
||||
* Authentication decorators work again with new ASGI spec
|
||||
|
||||
* channel_session_user_from_http decorator introduced
|
||||
|
||||
* HTTP Long Poll support (raise ResponseLater)
|
||||
|
||||
* Handle non-latin1 request body encoding
|
||||
|
||||
* ASGI conformance tests for built-in database backend
|
||||
|
||||
* Moved some imports around for more sensible layout
|
|
@ -1,4 +1,4 @@
|
|||
__version__ = "0.8"
|
||||
__version__ = "0.9"
|
||||
|
||||
default_app_config = 'channels.apps.ChannelsConfig'
|
||||
DEFAULT_CHANNEL_LAYER = 'default'
|
||||
|
|
8
setup.py
8
setup.py
|
@ -1,8 +1,9 @@
|
|||
from setuptools import find_packages, setup
|
||||
from channels import __version__
|
||||
|
||||
setup(
|
||||
name='channels',
|
||||
version="0.8",
|
||||
version=__version__,
|
||||
url='http://github.com/andrewgodwin/django-channels',
|
||||
author='Andrew Godwin',
|
||||
author_email='andrew@aeracode.org',
|
||||
|
@ -11,7 +12,8 @@ setup(
|
|||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'Django',
|
||||
'asgiref',
|
||||
'Django>=1.7',
|
||||
'asgiref>=0.9',
|
||||
'daphne>=0.9',
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user