diff --git a/CHANGES.rst b/CHANGES.rst index 748d66d..97e9a89 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,10 +4,16 @@ Change Log 0.14.0 ------ * Correctly handle serving app content from the root path of a domain. -* Account security tokens are now calculated for each minute allowing - for finer grained token expiry. -* DDP_PASSWORD_RESET_DAYS_VALID becomes DDP_PASSWORD_RESET_MINUTES_VALID. -* DDP_LOGIN_RESUME_DAYS_VALID becomes DDP_LOGIN_RESUME_MINUTES_VALID. +* Account security tokens are now calculated for each minute allowing for finer grained token expiry. +* Fix bug in error handling where invalid arguments were being passed to `logging.error()`. +* Change setting names (and implied meanings): + - DDP_PASSWORD_RESET_DAYS_VALID becomes + DDP_PASSWORD_RESET_MINUTES_VALID. + - DDP_LOGIN_RESUME_DAYS_VALID becomes DDP_LOGIN_RESUME_MINUTES_VALID. +* Include `created` field in logs collection. +* Stop depending on `Referrer` HTTP header which is optional. +* Honour `--verbosity` in `dddp` command, now showing API endpoints in more verbose modes. +* Updated `dddp.test` to Meteor 1.2 and also showing example of URL config to serve Meteor files from Python. 0.13.0 ------ diff --git a/setup.py b/setup.py index 82bba90..9f4282b 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ CLASSIFIERS = [ setup( name='django-ddp', - version='0.13.0', + version='0.14.0', description=__doc__, long_description=open('README.rst').read(), author='Tyson Clugg',