From b1017c78e5089da4b504b4f8f6c221a1ee05e676 Mon Sep 17 00:00:00 2001 From: Tyson Clugg Date: Thu, 13 Aug 2015 10:00:54 +1000 Subject: [PATCH] Update CHANGES.rst, bump version number. --- CHANGES.rst | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 2eae416..8a63954 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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) diff --git a/setup.py b/setup.py index c84f740..1126824 100644 --- a/setup.py +++ b/setup.py @@ -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',