diff options
| author | Roman Haritonov <rharitonov@asdco.ru> | 2019-04-18 21:06:00 +0300 |
|---|---|---|
| committer | Roman Haritonov <rharitonov@asdco.ru> | 2019-04-18 21:06:00 +0300 |
| commit | 3633d43fa3e97bc9f92ea83a749925bbad215393 (patch) | |
| tree | 5bb12a3b097d68b2c72c6949dc7845cf01b1f56a | |
| parent | de39c7209fe9bf47a648fe1dacd0d6dccb968cfb (diff) | |
| download | requests-cache-0.5.0.tar.gz | |
Bump version 0.5.0v0.5.0
| -rw-r--r-- | HISTORY.rst | 12 | ||||
| -rw-r--r-- | requests_cache/__init__.py | 2 | ||||
| -rw-r--r-- | setup.py | 2 |
3 files changed, 14 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst index 12a31d9..113da4f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,18 @@ History ------- +0.5.0 (2019-04-18) +++++++++++++++++++ +Project is now added to https://www.codeshelter.co/ + +* Add gridfs support, thanks to @chengguangnan +* Add dynamodb support, thanks to @ar90n +* Add response filter #104, thanks to @christopher-dG +* Fix bulk_commit #78 +* Fix remove_expired_responses missed in __init__.py #93 +* Fix deprecation warnings #122, thanks to mbarkhau + + 0.4.13 (2016-12-23) +++++++++++++++++++ * Support PyMongo3, thanks to @craigls #72 diff --git a/requests_cache/__init__.py b/requests_cache/__init__.py index 3deffc7..3ff03bc 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.13' +__version__ = '0.5.0' from .core import( CachedSession, install_cache, uninstall_cache, @@ -20,7 +20,7 @@ setup( packages=['requests_cache', 'requests_cache.backends', 'requests_cache.backends.storage'], - version='0.4.13', + version='0.5.0', description='Persistent cache for requests library', author='Roman Haritonov', author_email='reclosedev@gmail.com', |
