From c5825391afd0e9acc6bf5049ce2e15756e75c8a8 Mon Sep 17 00:00:00 2001 From: Rich Leland Date: Wed, 20 Mar 2013 17:56:29 -0400 Subject: [PATCH] Bumped version, updated changelog --- CHANGELOG.rst | 13 +++++++++++++ storages/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cd4c0a4..587a193 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,19 @@ django-storages change log ========================== +1.1.7 (2013-03-20) +****************** + +* Listing of huge buckets on S3 is now prevented by using the prefix argument to boto's list() method +* Initial support for Windows Azure Storage +* Switched to useing boto's parse_ts date parser getting last modified info when using S3boto backend +* Fixed key handling in S3boto and Google Storage backends +* Account for lack of multipart upload in Google Storage backend +* Fixed seek() issue when using AWS_IS_GZIPPED by darkness51 with pull-request `#50`_ +* Improvements to S3BotoStorage and GSBotoStorage + +.. _#50: https://bitbucket.org/david/django-storages/pull-request/50/ + 1.1.6 (2013-01-06) ****************** diff --git a/storages/__init__.py b/storages/__init__.py index 6ebd335..9910ac2 100644 --- a/storages/__init__.py +++ b/storages/__init__.py @@ -1 +1 @@ -__version__ = '1.1.6' +__version__ = '1.1.7'