summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Haritonov <reclosedev@gmail.com>2014-12-13 09:50:25 +0300
committerRoman Haritonov <reclosedev@gmail.com>2014-12-13 09:50:25 +0300
commited47110bd22beb2befecb32908b262968d0a848d (patch)
treea7778825f4e400f610d20ef521f49a65fbabe840
parent1866eb3d8becf9867154f618a1ab19340530a85e (diff)
downloadrequests-cache-ed47110bd22beb2befecb32908b262968d0a848d.tar.gz
Bump version 0.4.8v0.4.8
-rw-r--r--HISTORY.rst7
-rw-r--r--requests_cache/__init__.py2
-rw-r--r--setup.py2
3 files changed, 9 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index 53aa1a0..7371981 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -3,6 +3,13 @@
History
-------
+
+0.4.8 (2014-12-13)
+++++++++++++++++++
+
+* Fix bug in reading cached streaming response
+
+
0.4.7 (2014-12-06)
++++++++++++++++++
diff --git a/requests_cache/__init__.py b/requests_cache/__init__.py
index 2ce3670..6608d61 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.7'
+__version__ = '0.4.8'
from .core import(
CachedSession, install_cache, uninstall_cache,
diff --git a/setup.py b/setup.py
index 275c080..a5135d7 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.7',
+ version='0.4.8',
description='Persistent cache for requests library',
author='Roman Haritonov',
author_email='reclosedev@gmail.com',