Skip to content

Commit

Permalink
changes for the fork
Browse files Browse the repository at this point in the history
update CHANGELOG for all features since the last release
update metadata with new package name
  • Loading branch information
jschneier committed Dec 9, 2014
1 parent 0f2fa28 commit a690383
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 5 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
django-storages change log
==========================

Version 1.1.9 is the first release of django-storages-redux after the fork but
is simply the current state of django-storages in master as of 2014-12-08 (no
commit since March 2014 and no PyPi release since March 2013)

1.1.9 (2014-12-08)
******************

* Fix syntax for Python3 with pull-request `#91`_
* Support pushing content type from File object to GridFS with pull-request `#90`_
* Support passing a region to the libcloud driver with pull-request `#86`_
* Handle trailing slash paths fixes `#188`_ fixed by pull-request `#85`_
* Use a SpooledTemporaryFile to conserve memory in S3BotoFile pull-request `#69`_
* Guess content-type for S3BotoStorageFile the same way that _save() in S3BotoStorage does
* Pass headers and response_headers through from url to generate_url in S3BotoStorage pull-request `#65`_
* Added AWS_S3_HOST, AWS_S3_PORT and AWS_S3_USE_SSL settings to specify host, port and is_secure in pull-request `#66`_

.. _#91: https://bitbucket.org/david/django-storages/pull-request/91/
.. _#90: https://bitbucket.org/david/django-storages/pull-request/90/
.. _#86: https://bitbucket.org/david/django-storages/pull-request/86/
.. _#188: https://bitbucket.org/david/django-storages/issue/188/s3boto-_clean_name-is-broken-and-leads-to
.. _#85: https://bitbucket.org/david/django-storages/pull-request/85/
.. _#69: https://bitbucket.org/david/django-storages/pull-request/69/
.. _#66: https://bitbucket.org/david/django-storages/pull-request/66/
.. _#65: https://bitbucket.org/david/django-storages/pull-request/65/

Everything Below Here Was Previously Released on PyPi under django-storages
***************************************************************************

1.1.8 (2013-03-31)
******************

Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
import storages

setup(
name = 'django-storages',
name = 'django-storages-redux',
version = storages.__version__,
packages = find_packages(),

author = 'David Larlet',
author_email = 'david@larlet.fr',
author = 'Josh Schneier',
author_email = 'josh.schneier@gmail.com',
license = 'BSD',
description = 'Support for many storages (S3, MogileFS, etc) in Django.',
url='http://code.welldev.org/django-storages/',
url='https://github.com/jschneier/django-storages-redux',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
Expand Down
2 changes: 1 addition & 1 deletion storages/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.8'
__version__ = '1.1.9'

0 comments on commit a690383

Please sign in to comment.