diff --git a/HISTORY.rst b/HISTORY.rst index b17ad21..3a63ce0 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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 diff --git a/pydantic/version.py b/pydantic/version.py index 0eb6430..50903cd 100644 --- a/pydantic/version.py +++ b/pydantic/version.py @@ -2,4 +2,4 @@ from distutils.version import StrictVersion __all__ = ['VERSION'] -VERSION = StrictVersion('0.3.0a1') +VERSION = StrictVersion('0.3.0')