Releasing 1.1.1

This commit is contained in:
Andrew Godwin 2017-03-19 11:23:28 -07:00
parent 08881bc7de
commit 274a5a8c98
7 changed files with 34 additions and 4 deletions

View File

@ -1,6 +1,12 @@
Full release notes, with more details and upgrade information, are available at: Full release notes, with more details and upgrade information, are available at:
https://channels.readthedocs.io/en/latest/releases https://channels.readthedocs.io/en/latest/releases
1.1.1 (2017-03-19)
------------------
* Fixed JS packaging issue
1.1.0 (2017-03-18) 1.1.0 (2017-03-18)
------------------ ------------------

View File

@ -1 +1,2 @@
recursive-exclude tests * recursive-exclude tests *
include channels/static/channels/js/*

View File

@ -1,4 +1,4 @@
__version__ = "1.1.0" __version__ = "1.1.1"
default_app_config = 'channels.apps.ChannelsConfig' default_app_config = 'channels.apps.ChannelsConfig'
DEFAULT_CHANNEL_LAYER = 'default' DEFAULT_CHANNEL_LAYER = 'default'

22
docs/releases/1.1.1.rst Normal file
View File

@ -0,0 +1,22 @@
1.1.1 Release Notes
===================
Channels 1.1.1 is a bugfix release that fixes a packaging issue with the JavaScript files.
Major Changes
-------------
None.
Minor Changes & Bugfixes
------------------------
* The JavaScript binding introduced in 1.1.0 is now correctly packaged and
included in builds.
Backwards Incompatible Changes
------------------------------
None.

View File

@ -9,3 +9,4 @@ Release Notes
1.0.2 1.0.2
1.0.3 1.0.3
1.1.0 1.1.0
1.1.1

View File

@ -1,6 +1,6 @@
{ {
"name": "django-channels", "name": "django-channels",
"version": "1.1.0", "version": "1.1.1",
"description": "", "description": "",
"repository": { "repository": {
"type": "git", "type": "git",
@ -36,7 +36,7 @@
}, },
"devDependencies": { "devDependencies": {
"babel": "^6.5.2", "babel": "^6.5.2",
"babel-cli": "^6.16.0", "babel-cli": "^6.24.0",
"babel-core": "^6.16.0", "babel-core": "^6.16.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0", "babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-object-assign": "^6.8.0", "babel-plugin-transform-object-assign": "^6.8.0",

View File

@ -13,7 +13,7 @@ setup(
include_package_data=True, include_package_data=True,
install_requires=[ install_requires=[
'Django>=1.8', 'Django>=1.8',
'asgiref>=1.0.0', 'asgiref>=1.0.1',
'daphne>=1.0.0', 'daphne>=1.0.0',
], ],
extras_require={ extras_require={