summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Haritonov <reclosedev@gmail.com>2013-10-31 21:54:37 +0400
committerRoman Haritonov <reclosedev@gmail.com>2013-10-31 21:54:37 +0400
commitb347a9c516f1b7c1d65c376ce255eca274b88999 (patch)
treecf8598372fce1528c0d65ccb121c1399d91617b9
parent1b55ac2e9d3f1614c5a219022c76102c8ecd5d13 (diff)
downloadrequests-cache-0.4.4.tar.gz
Bump version 0.4.4v0.4.4
-rw-r--r--HISTORY.rst8
-rw-r--r--requests_cache/__init__.py2
-rw-r--r--setup.py2
3 files changed, 10 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index fe515b5..174a067 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -3,6 +3,14 @@
History
-------
+
+0.4.4 (2013-10-31)
++++++++++++++++++++
+
+* Check for backend availability in install_cache(), not at the first request
+* Default storage fallbacks to memory if ``sqlite`` is not available
+
+
0.4.3 (2013-09-12)
+++++++++++++++++++
diff --git a/requests_cache/__init__.py b/requests_cache/__init__.py
index 6f5806d..2f83d17 100644
--- a/requests_cache/__init__.py
+++ b/requests_cache/__init__.py
@@ -23,7 +23,7 @@
:license: BSD, see LICENSE for more details.
"""
__docformat__ = 'restructuredtext'
-__version__ = '0.4.3'
+__version__ = '0.4.4'
from .core import(
CachedSession, install_cache, uninstall_cache,
diff --git a/setup.py b/setup.py
index 09b10eb..c90ed31 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ setup(
packages=['requests_cache',
'requests_cache.backends',
'requests_cache.backends.storage'],
- version='0.4.3',
+ version='0.4.4',
description='Persistent cache for requests library',
author='Roman Haritonov',
author_email='reclosedev@gmail.com',