summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Haritonov <reclosedev@gmail.com>2015-04-29 00:01:45 +0300
committerRoman Haritonov <reclosedev@gmail.com>2015-04-29 00:10:50 +0300
commit630198cdc4386478ab8eba18beed94c1847f1087 (patch)
tree13988dd7c643960dad1a6dc0929cb1f13676952a
parente2b1e339b87bab67c8be547df323cf8594ad508f (diff)
downloadrequests-cache-630198cdc4386478ab8eba18beed94c1847f1087.tar.gz
Bump version 0.4.10v0.4.10wip-req-compat
-rw-r--r--HISTORY.rst5
-rw-r--r--requests_cache/__init__.py2
-rw-r--r--requirements-test.txt2
3 files changed, 7 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index 221a024..706d462 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -3,6 +3,11 @@
History
-------
+0.4.10 (2015-04-28)
++++++++++++++++++++
+* Better transactional handling in sqlite #50, thanks to @rgant
+* Compatibility with streaming in requests >= 2.6.x
+
0.4.9 (2015-01-17)
++++++++++++++++++
diff --git a/requests_cache/__init__.py b/requests_cache/__init__.py
index 1742617..368842e 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.9'
+__version__ = '0.4.10'
from .core import(
CachedSession, install_cache, uninstall_cache,
diff --git a/requirements-test.txt b/requirements-test.txt
index d0b7de2..b658ab2 100644
--- a/requirements-test.txt
+++ b/requirements-test.txt
@@ -1,6 +1,6 @@
pytest
unittest2
-pymongo
+pymongo==2.7.2
redis
requests
mock