summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Haritonov <reclosedev@gmail.com>2013-08-25 21:12:37 +0400
committerRoman Haritonov <reclosedev@gmail.com>2013-08-25 21:12:37 +0400
commita2fd5b66c123fa03acddeeafbb2e444c23e053ce (patch)
tree905e81f9a5b97c89163597a7707c0fbc98a728ee
parent70451048da6bec6bd2c0cb86419ccc7cc3b559b6 (diff)
downloadrequests-cache-a2fd5b66c123fa03acddeeafbb2e444c23e053ce.tar.gz
Bump version 0.4.2v0.4.2
-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 6625901..1b728bf 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -3,6 +3,13 @@
History
-------
+0.4.2 (2013-08-25)
++++++++++++++++++++
+
+* Fix ``UnpickleableError`` for gzip responses
+
+
+
0.4.1 (2013-08-19)
+++++++++++++++++++
diff --git a/requests_cache/__init__.py b/requests_cache/__init__.py
index fe1b444..b3e4e70 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.1'
+__version__ = '0.4.2'
from .core import(
CachedSession, install_cache, uninstall_cache,
diff --git a/setup.py b/setup.py
index 24e5ac2..168e307 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.1',
+ version='0.4.2',
description='Persistent cache for requests library',
author='Roman Haritonov',
author_email='reclosedev@gmail.com',