This commit is contained in:
Samuel Colvin
2017-06-21 18:22:37 +01:00
parent 92d7689271
commit 94c2fe553b
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -3,14 +3,14 @@
History
-------
v0.3.0 (TBC)
............
v0.3.0 (2017-06-21)
...................
* immutable models via ``config.allow_mutation = False``, associated cleanup and performance improvement #44
* immutable helper methods ``construct()`` and ``copy()`` #53
* allow pickling of models #53
* ``setattr`` is removed as ``__setattr__`` is now intelligent #44
* ``raise_exception`` removed, Models now always raise exceptions #44
* instance method validators removed TODO
* instance method validators removed
* django-restful-framework benchmarks added #47
* fix inheritance bug #49
* make str type stricter so list, dict etc are not coerced to strings. #52
+1 -1
View File
@@ -2,4 +2,4 @@ from distutils.version import StrictVersion
__all__ = ['VERSION']
VERSION = StrictVersion('0.3.0a1')
VERSION = StrictVersion('0.3.0')