From 3559942b224b95745fafbdfe5595c5b457ec74c1 Mon Sep 17 00:00:00 2001 From: Mardix Date: Sat, 9 Jan 2016 05:36:21 -0500 Subject: [PATCH 1/3] 0.13.0 - Upgrade apache-libcloud to 0.20.0 --- .gitignore | 1 + CHANGELOG | 5 +++++ setup.py | 4 ++-- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ba923fb..5bcc641 100644 --- a/.gitignore +++ b/.gitignore @@ -30,6 +30,7 @@ docs/_build* .test_config .tox +.cache tests/* !tests/__init__.py diff --git a/CHANGELOG b/CHANGELOG index 621c46c..577c7db 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +0.13.0 + - Upgrade apache-libcloud to 0.20.0 + - Fixed object being False + - Thanks to https://github.com/alexa-infra for the contributions + 0.12.0 - Fixed prefix in Storage.upload that assumed the prefix is a directory Add a slash / at the end of prefix to make it a directory, or it will diff --git a/setup.py b/setup.py index ed5ae20..c11d7de 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ Supported storage: from setuptools import setup, find_packages __NAME__ = "Flask-Cloudy" -__version__ = "0.12.0" +__version__ = "0.13.0" __author__ = "Mardix" __license__ = "MIT" __copyright__ = "2015" @@ -39,7 +39,7 @@ setup( packages=find_packages(), install_requires=[ "Flask==0.10.1", - "apache-libcloud==0.19.0", + "apache-libcloud==0.20.0", "lockfile==0.10.2", "shortuuid==0.1", "six==1.9.0", From 36f6b61a8189853a702c6672aed7b4721f357641 Mon Sep 17 00:00:00 2001 From: Mardix Date: Sat, 9 Jan 2016 05:37:31 -0500 Subject: [PATCH 2/3] Update version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c59ebf..ee330aa 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ AWS S3, Google Storage, Microsoft Azure, Rackspace Cloudfiles, and even Local fi For local file storage, it also provides a flask endpoint to access the files. -Version: 0.11.* +Version: 0.13.* --- From d60939920e7c3702c142c45da50eabd73b93c8c5 Mon Sep 17 00:00:00 2001 From: Mardix Date: Sat, 9 Jan 2016 05:44:39 -0500 Subject: [PATCH 3/3] 0.13.1 - Merge pull request --- CHANGELOG | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 577c7db..dba9608 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +0.13.1 + - Set default storage to True + - Thanks to https://github.com/wassname for the contributions + 0.13.0 - Upgrade apache-libcloud to 0.20.0 - Fixed object being False diff --git a/setup.py b/setup.py index c11d7de..3f8f348 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ Supported storage: from setuptools import setup, find_packages __NAME__ = "Flask-Cloudy" -__version__ = "0.13.0" +__version__ = "0.13.1" __author__ = "Mardix" __license__ = "MIT" __copyright__ = "2015"