summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Haritonov <reclosedev@gmail.com>2014-08-22 21:12:12 +0400
committerRoman Haritonov <reclosedev@gmail.com>2014-08-22 21:12:12 +0400
commit852e5b1e7fc3ae274b480a5db3d90823f496f442 (patch)
tree88325b015b66540f58c18b7054a0e5cee490550e
parent68b6d4cd9f31c4b86f5f53908602b2899960acdf (diff)
downloadrequests-cache-852e5b1e7fc3ae274b480a5db3d90823f496f442.tar.gz
Bump version 0.4.5v0.4.5
-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 174a067..399972b 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -3,6 +3,11 @@
History
-------
+0.4.5 (2014-08-22)
+++++++++++++++++++
+
+* Requests==2.3.0 compatibility, thanks to @gwillem
+
0.4.4 (2013-10-31)
+++++++++++++++++++
diff --git a/requests_cache/__init__.py b/requests_cache/__init__.py
index 2f83d17..5f5bd33 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.4'
+__version__ = '0.4.5'
from .core import(
CachedSession, install_cache, uninstall_cache,
diff --git a/setup.py b/setup.py
index c90ed31..4574f43 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.4',
+ version='0.4.5',
description='Persistent cache for requests library',
author='Roman Haritonov',
author_email='reclosedev@gmail.com',