Update CHANGES.rst, bump version number.

This commit is contained in:
Tyson Clugg 2015-09-22 18:21:14 +10:00
parent cefe6fe62d
commit 3e8dd2f26b
2 changed files with 11 additions and 5 deletions

View file

@ -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
------

View file

@ -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',