From c85a6b7204ad5afcc40f012370079ebbbf835b0a Mon Sep 17 00:00:00 2001 From: Tyson Clugg Date: Thu, 23 Apr 2015 14:52:22 +1000 Subject: [PATCH 1/3] Preparing for 0.3.0 release. --- bumpversion.sh | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100755 bumpversion.sh 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', From f20ffcbc11a7514bf22cf668ac0c06be2f7ffeb2 Mon Sep 17 00:00:00 2001 From: Tyson Clugg Date: Thu, 23 Apr 2015 15:01:53 +1000 Subject: [PATCH 2/3] Updated changelog for 0.3.0 release. --- CHANGES.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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 From bb5852d18b6ec9870c2baf1d6705b955faf50249 Mon Sep 17 00:00:00 2001 From: Tyson Clugg Date: Thu, 23 Apr 2015 15:04:17 +1000 Subject: [PATCH 3/3] Update README for 0.3.0 release. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.