Merge tag '0.12.1' into develop

0.12.1
This commit is contained in:
Tyson Clugg 2015-08-13 10:01:07 +10:00
commit dbcfa65116
2 changed files with 10 additions and 1 deletions

View file

@ -1,6 +1,15 @@
Change Log
==========
0.12.1
------
* Add `AleaIdMixin` which provides `aid = AleaIdField(unique=True)` to
models.
* Use `AleaIdField(unique=True)` wherever possible when translating
between Meteor style identifiers and Django primary keys, reducing
round trips to the database and hence drastically improving
performance when such fields are available.
0.12.0
------
* Get path to `star.json` from view config (defined in your urls.py)

View file

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