summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 1b728bf..fe515b5 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -3,6 +3,13 @@
History
-------
+0.4.3 (2013-09-12)
++++++++++++++++++++
+
+* Fix ``response.from_cache`` not set in hooks
+
+
+
0.4.2 (2013-08-25)
+++++++++++++++++++
diff --git a/requests_cache/__init__.py b/requests_cache/__init__.py
index b3e4e70..6f5806d 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.2'
+__version__ = '0.4.3'
from .core import(
CachedSession, install_cache, uninstall_cache,
diff --git a/setup.py b/setup.py
index 168e307..09b10eb 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.2',
+ version='0.4.3',
description='Persistent cache for requests library',
author='Roman Haritonov',
author_email='reclosedev@gmail.com',