diff --git a/CHANGELOG.md b/CHANGELOG.md index 732203ec..75996e0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog +## 0.10.0 (2018-06-17) + +* Cache can be disabled in decorated functions using `cache_read` and `cache_write` [#404](https://github.com/argaen/aiocache/issues/404) - Josep Cugat + +* Cache constructor can receive now default ttl [#405](https://github.com/argaen/aiocache/issues/405) - Josep Cugat ## 0.9.1 (2018-04-27) * Single deploy step [#395](https://github.com/argaen/aiocache/issues/395) - Manuel Miranda diff --git a/aiocache/_version.py b/aiocache/_version.py index 8969d496..9d1bb721 100644 --- a/aiocache/_version.py +++ b/aiocache/_version.py @@ -1 +1 @@ -__version__ = '0.9.1' +__version__ = '0.10.0'