diff options
| -rw-r--r-- | HISTORY.rst | 5 | ||||
| -rw-r--r-- | requests_cache/__init__.py | 2 | ||||
| -rw-r--r-- | requirements-test.txt | 2 |
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 |
