mirror of
https://github.com/wassname/flask-cloudy.git
synced 2026-09-09 11:22:27 +08:00
Merge branch 'master' into patch-5
This commit is contained in:
@@ -32,6 +32,7 @@ docs/_build*
|
||||
.test_config
|
||||
|
||||
.tox
|
||||
.cache
|
||||
|
||||
!tests/__init__.py
|
||||
!tests/config.py
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
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
|
||||
- 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
|
||||
|
||||
@@ -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.*
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ Supported storage:
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
__NAME__ = "Flask-Cloudy"
|
||||
__version__ = "0.12.0"
|
||||
__version__ = "0.13.1"
|
||||
__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",
|
||||
|
||||
Reference in New Issue
Block a user