Merge tag '0.15.0' into develop

0.15.0
This commit is contained in:
Tyson Clugg 2015-09-25 11:38:17 +10:00
commit a9df2f27df
2 changed files with 8 additions and 1 deletions

View file

@ -1,6 +1,13 @@
Change Log
==========
0.15.0
------
* Renamed `Logs` collection and publication to `dddp.logs` to be consistent with naming conventions used elsewhere.
* Pass all attributes from `logging.LogRecord` via `dddp.logs` collection.
* Use select_related() and resultant cached relational fields to speed up Colleciton.serialize() by significantly reducing round-trips to the database.
* Fix bug in `get_meteor_ids()` which caused many extra database hits.
0.14.0
------
* Correctly handle serving app content from the root path of a domain.

View file

@ -44,7 +44,7 @@ CLASSIFIERS = [
setup(
name='django-ddp',
version='0.14.0',
version='0.15.0',
description=__doc__,
long_description=open('README.rst').read(),
author='Tyson Clugg',