diff --git a/CHANGES.rst b/CHANGES.rst index 97e9a89..7bb9aef 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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. diff --git a/setup.py b/setup.py index 9f4282b..8c19cbf 100644 --- a/setup.py +++ b/setup.py @@ -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',