diff --git a/CHANGES.rst b/CHANGES.rst index 8a63954..2b98e96 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Change Log ========== +0.12.2 +------ +* Set blank=True on AleaIdField, allowing adding items without inventing + IDs yourself. + 0.12.1 ------ * Add `AleaIdMixin` which provides `aid = AleaIdField(unique=True)` to diff --git a/setup.py b/setup.py index 1126824..a269565 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages setup( name='django-ddp', - version='0.12.1', + version='0.12.2', description=__doc__, long_description=open('README.rst').read(), author='Tyson Clugg',