From c6527bebf1fa55a95dcf4ff50d4bc9b4acd1b0ca Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Tue, 8 Sep 2015 10:33:24 -0500 Subject: [PATCH] Version 0.7 --- README.rst | 7 ++++--- setup.py | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 58568ab..0207815 100644 --- a/README.rst +++ b/README.rst @@ -3,10 +3,11 @@ Django Channels This is a work-in-progress code branch of Django implemented as a third-party app, which aims to bring some asynchrony to Django and expand the options -for code beyond the request-response model. +for code beyond the request-response model, in particular enabling WebSocket, +HTTP2 push, and background task support. -This is still **pre-alpha** software, and you use it at your own risk; the -API is not yet stable. +This is still **beta** software: the API is mostly settled, but might change +a bit as things develop. Documentation, installation and getting started instructions are at http://channels.readthedocs.org diff --git a/setup.py b/setup.py index 01fe972..a5e0547 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,11 @@ from setuptools import find_packages, setup setup( name='channels', - version="0.1.1", + version="0.7", url='http://github.com/andrewgodwin/django-channels', author='Andrew Godwin', author_email='andrew@aeracode.org', - description="Brings event-driven capabilities to Django with a channel system. Django 1.8 and up only.", + description="Brings event-driven capabilities to Django with a channel system. Django 1.7 and up only.", license='BSD', packages=find_packages(), include_package_data=True,