Bump version 0.4.10
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