summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Haritonov <reclosedev@gmail.com>2016-03-19 10:43:36 +0300
committerRoman Haritonov <reclosedev@gmail.com>2016-03-19 10:43:36 +0300
commitc83c8dbc85094cc7d6a65784d9727ece4d86eeea (patch)
treedbeae077ea89e328998886ec241f6090507d8b21
parent62d90f22d8861706f6042e08b358b20a1acb0361 (diff)
downloadrequests-cache-0.4.12.tar.gz
Bump version 0.4.12v0.4.12
-rw-r--r--HISTORY.rst5
-rw-r--r--requests_cache/__init__.py2
-rw-r--r--setup.py2
3 files changed, 7 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index 42902a5..4e9fc21 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -3,6 +3,11 @@
History
-------
+0.4.12 (2016-03-19)
++++++++++++++++++++
+* Fix ability to pass backend instance in ``install_cache`` #61
+
+
0.4.11 (2016-03-07)
+++++++++++++++++++
* ``ignore_parameters`` feature, thanks to @themiurgo and @YetAnotherNerd (#52, #55)
diff --git a/requests_cache/__init__.py b/requests_cache/__init__.py
index 8e852b6..eeaaae8 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.11'
+__version__ = '0.4.12'
from .core import(
CachedSession, install_cache, uninstall_cache,
diff --git a/setup.py b/setup.py
index 682d62f..f959ce3 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.11',
+ version='0.4.12',
description='Persistent cache for requests library',
author='Roman Haritonov',
author_email='reclosedev@gmail.com',