Merge tag '0.3.0' into develop

Django DDP version 0.3.0
This commit is contained in:
Tyson Clugg 2015-04-23 15:09:33 +10:00
commit d28572fba5
4 changed files with 17 additions and 2 deletions

View file

@ -1,6 +1,18 @@
Change Log
==========
0.3.0
-----
* New DB field: Connection.server_addr -- **you must `migrate` your
database after upgrading**.
* Cleanup connections on shutdown (and purge associated subscriptions).
* Make `dddp` management command a subclass of the `runserver` command
so that `staticfiles` work as expected.
* Fix non-threadsafe failure in serializer - now using thread local
serializer instance.
* Fix `unsubscribe` from publications.
* Fix `/schema` method call.
0.2.5
-----
* Fix foreign key references in change messages to correctly reference

View file

@ -18,7 +18,7 @@ Peer servers subscribe to aggregate broadcast events only for channels (Django m
Limitations
-----------
The 0.2.x release series only supports DDP via WebSockets_. Future
The 0.3.x release series only supports DDP via WebSockets_. Future
development may resolve this by using SockJS, to support browsers that
don't have WebSockets.

3
bumpversion.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
cd "${0%/*}"
cat setup.py | sed -e "s/version='[0123456789]\+\.[0123456789]\+\.[01234567989]\+'/version='$( git rev-parse --abbrev-ref HEAD | cut -d / -f 2 )'/" > setup.py

View file

@ -5,7 +5,7 @@ from setuptools import setup, find_packages
setup(
name='django-ddp',
version='0.2.5',
version='0.3.0',
description=__doc__,
long_description=open('README.rst').read(),
author='Tyson Clugg',