diff --git a/CHANGES.rst b/CHANGES.rst index 36e332f..904582a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 diff --git a/README.rst b/README.rst index 6c6aa63..58449fb 100644 --- a/README.rst +++ b/README.rst @@ -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. diff --git a/bumpversion.sh b/bumpversion.sh new file mode 100755 index 0000000..46c0629 --- /dev/null +++ b/bumpversion.sh @@ -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 diff --git a/setup.py b/setup.py index ad5af17..f3f1894 100644 --- a/setup.py +++ b/setup.py @@ -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',