summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Haritonov <reclosedev@gmail.com>2016-03-07 10:33:39 +0300
committerRoman Haritonov <reclosedev@gmail.com>2016-03-07 10:33:39 +0300
commit6a45b8ab9947f41c16508c3b6812ff452bdedc10 (patch)
treed5ef9b9cb7756e5f902aea2bad90ba8d95a7f8ad
parentf7a619f272cc044d0e03ee5b706c8ae3fad658ce (diff)
downloadrequests-cache-6a45b8ab9947f41c16508c3b6812ff452bdedc10.tar.gz
Bump version 0.4.11 + changelogv0.4.11
-rw-r--r--HISTORY.rst6
-rw-r--r--requests_cache/__init__.py2
-rw-r--r--setup.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index 706d462..42902a5 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -3,6 +3,12 @@
History
-------
+0.4.11 (2016-03-07)
++++++++++++++++++++
+* ``ignore_parameters`` feature, thanks to @themiurgo and @YetAnotherNerd (#52, #55)
+* More informative message for missing backend dependencies, thanks to @Garrett-R (#60)
+
+
0.4.10 (2015-04-28)
+++++++++++++++++++
* Better transactional handling in sqlite #50, thanks to @rgant
diff --git a/requests_cache/__init__.py b/requests_cache/__init__.py
index 368842e..8e852b6 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.10'
+__version__ = '0.4.11'
from .core import(
CachedSession, install_cache, uninstall_cache,
diff --git a/setup.py b/setup.py
index 78801dd..682d62f 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.10',
+ version='0.4.11',
description='Persistent cache for requests library',
author='Roman Haritonov',
author_email='reclosedev@gmail.com',