From 79c77b33e96f7cac7b87c660ba9a918fad8fe5a9 Mon Sep 17 00:00:00 2001 From: Manuel Miranda Date: Wed, 31 Jul 2019 10:36:00 +0800 Subject: [PATCH] Bump version 0.11.0 --- CHANGELOG.md | 25 +++++++++++++++++++++++-- aiocache/_version.py | 2 +- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a94f1e47..6077aa63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # CHANGELOG +## 0.11.0 (2019-07-31) + +* Support str for timeout and ttl [#454](https://github.com/argaen/aiocache/issues/454) - Manuel Miranda + +* Add aiocache_wait_for_write decorator param [#448](https://github.com/argaen/aiocache/issues/448) - Manuel Miranda + +* Extend and improve usage of Cache class [#446](https://github.com/argaen/aiocache/issues/446) - Manuel Miranda + +* Add caches.add functionality [#440](https://github.com/argaen/aiocache/issues/440) - Manuel Miranda + +* Use raw msgpack attribute for loads [#439](https://github.com/argaen/aiocache/issues/439) - Manuel Miranda + +* Add docs regarding plugin timeouts and multicached [#438](https://github.com/argaen/aiocache/issues/438) - Manuel Miranda + +* Fix typehints in lock.py [#434](https://github.com/argaen/aiocache/issues/434) - Aviv + +* Use pytest_configure instead of pytest_namespace [#436](https://github.com/argaen/aiocache/issues/436) - Manuel Miranda + +* Add Cache class factory [#430](https://github.com/argaen/aiocache/issues/430) - Manuel Miranda + + ## 0.10.1 (2018-11-15) * Cancel the previous ttl timer if exists when setting a new value in the in-memory cache [#424](https://github.com/argaen/aiocache/issues/424) - Minh Tu Le @@ -27,7 +48,6 @@ * Lazy load redis asyncio.Lock [#397](https://github.com/argaen/aiocache/issues/397) - Jordi Soucheiron - ## 0.9.0 (2018-04-24) * Bug #389/propagate redlock exceptions [#394](https://github.com/argaen/aiocache/issues/394) - Manuel Miranda @@ -48,9 +68,10 @@ raise always any exception raised from inside_ * Add create_connection_timeout for redis>=1.0.0 when creating connections [#368](https://github.com/argaen/aiocache/issues/368) - tmarques82 * Fixed spelling error in serializers.py [#371](https://github.com/argaen/aiocache/issues/371) - Jared Shields -## 0.8.0 (2017-11-08) +## 0.8.0 (2017-11-08) + * Add pypy support in build pipeline [#359](https://github.com/argaen/aiocache/issues/359) - Manuel Miranda * Fix multicached bug when using keys as an arg rather than kwarg [#356](https://github.com/argaen/aiocache/issues/356) - Manuel Miranda diff --git a/aiocache/_version.py b/aiocache/_version.py index 1f4c4d43..ae6db5f1 100644 --- a/aiocache/_version.py +++ b/aiocache/_version.py @@ -1 +1 @@ -__version__ = "0.10.1" +__version__ = "0.11.0"