From 5c937d27e49cab15f3b411d47bd5e2e96618854b Mon Sep 17 00:00:00 2001 From: John Whitlock Date: Thu, 5 Nov 2015 10:54:07 -0600 Subject: [PATCH] Release 0.3.3 * Add serilizer for datetime.timedelta, to support Django 1.8's DurationField (creynold) * Convert string representations of datetimes, dates, and timedeltas * Expand tests to Django 1.9 beta 1 and Django REST Framework 3.3 --- AUTHORS.rst | 4 ++-- HISTORY.rst | 7 +++++++ drf_cached_instances/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index a85f123..71887f3 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -10,5 +10,5 @@ Development Lead Contributors ------------ -* `fpruitt ` -* `creynold ` +* `fpruitt `_ +* `creynold `_ diff --git a/HISTORY.rst b/HISTORY.rst index a8639e0..2c8b7e4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,13 @@ History ======= +0.3.3 (2015-11-05) +------------------ +* Add serilizer for datetime.timedelta, to support Django 1.8's + DurationField (creynold) +* Convert string representations of datetimes, dates, and timedeltas +* Expand tests to Django 1.9 beta 1 and Django REST Framework 3.3 + 0.3.2 (2015-09-23) ------------------ * Remove deprecation warning in Django 1.8 diff --git a/drf_cached_instances/__init__.py b/drf_cached_instances/__init__.py index 078f01b..50560bd 100644 --- a/drf_cached_instances/__init__.py +++ b/drf_cached_instances/__init__.py @@ -2,4 +2,4 @@ __author__ = 'John Whitlock' __email__ = 'john@factorialfive.com' -__version__ = '0.3.2' +__version__ = '0.3.3'