From e6fc9f52caf30459aafa41e6f5155c212974902e Mon Sep 17 00:00:00 2001 From: Ryan Johnston Date: Tue, 15 Apr 2014 10:10:46 -0400 Subject: [PATCH] Version Bump and documentation update. --- README.rst | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 0f94018..5e84077 100644 --- a/README.rst +++ b/README.rst @@ -2,3 +2,14 @@ fs-dropbox ---------- File system for pyFilesystem which uses the dropbox API. + + + +A Note About Caching +~~~~~~~~~~~~~~~~~~~~ + +This library has build in caching. There are times when you will want to disable +caching. A user can change the file on the remote server and our code/cache will +not be notified of the change. One example of where this is an issue is before +you read/download a file from the remote side if you are using cached meta info +to specify the download size. diff --git a/setup.py b/setup.py index f2e0c30..8d899e4 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from distutils.core import setup name = 'dropboxfs' -version = '0.3.3' +version = '0.4.0' release = '0' versrel = version + '-' + release readme = os.path.join(os.path.dirname(__file__), 'README.rst')