Bump version number, update CHANGES.rst.

This commit is contained in:
Tyson Clugg 2015-05-18 12:43:45 +10:00
parent 0542e31f3d
commit 81aa149faf
2 changed files with 10 additions and 1 deletions

View file

@ -1,6 +1,15 @@
Change Log
==========
0.6.1
-----
* Fix `createUser` method to login new user after creation.
* Dump stack trace to console on error for easier debugging DDP apps.
* Fix handing of F expressions in object change handler.
* Send `nosub` in response to invalid subscription request.
* Per connection tracking of sent objects so changed/added sent
appropriately.
0.6.0
-----
* Add dddp.accounts module which provides password based auth mapping to

View file

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