Skip to content

Commit

Permalink
Bump version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
argaen committed Jun 5, 2017
1 parent f4b765f commit bd5c68b
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 7 deletions.
1 change: 1 addition & 0 deletions .release_notes.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
{{#commits}}
* {{{subject}}} - {{{author}}}
{{#body}}

_{{{body}}}_
{{/body}}

Expand Down
49 changes: 43 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,44 @@
# Changelog
## 0.6.0 (2017-06-05)

#### New

* Cached supports stampede locking [#249](https://github.com/argaen/aiocache/issues/249) - Manuel Miranda

* Memory redlock implementation [#241](https://github.com/argaen/aiocache/issues/241) - Manuel Miranda

* Memcached redlock implementation [#240](https://github.com/argaen/aiocache/issues/240) - Manuel Miranda

* Redis redlock implementation [#235](https://github.com/argaen/aiocache/issues/235) - Manuel Miranda

* Add close function to clean up resources [#236](https://github.com/argaen/aiocache/issues/236) - Quinn Perfetto

_Call `await cache.close()` to close a pool and its connections_

* `caches.create` works without alias [#253](https://github.com/argaen/aiocache/issues/253) - Manuel Miranda


#### Changes

* Decorators use JsonSerializer by default now [#258](https://github.com/argaen/aiocache/issues/258) - Manuel Miranda

_Also renamed DefaultSerializer to StringSerializer_

* Decorators use single connection [#257](https://github.com/argaen/aiocache/issues/257) - Manuel Miranda

_Decorators (except cached_stampede) now use a single connection for
each function call. This means connection doesn't go back to the pool
after each cache call. Since the cache instance is the same for a
decorated function, this means that the pool size must be high if
there is big expected concurrency for that given function_

* Change close to clear for redis [#239](https://github.com/argaen/aiocache/issues/239) - Manuel Miranda

_clear will free connections but will allow the user to still use the
cache if needed (same behavior for aiomcache and ofc memory)_


## 0.5.2

## 0.5.2 (2017-05-15)
* Reuse connection context manager [#225](https://github.com/argaen/aiocache/issues/225) [argaen]
* Add performance footprint tests [#228](https://github.com/argaen/aiocache/issues/228) [argaen]
* Timeout=0 takes precedence over self.timeout [#227](https://github.com/argaen/aiocache/issues/227) [argaen]
Expand Down Expand Up @@ -32,7 +69,7 @@
* Added example for compression serializer [#179](https://github.com/argaen/aiocache/issues/179) [argaen]
* Added BasePlugin.add_hook helper [#173](https://github.com/argaen/aiocache/issues/173) [argaen]

### Breaking
#### Breaking

* Refactored how settings and defaults work. Now
aliases are the only way. [#193](https://github.com/argaen/aiocache/issues/193) [argaen]
Expand All @@ -41,7 +78,7 @@
when using DefaultSerializer [#191](https://github.com/argaen/aiocache/issues/191) [argaen]


# 0.3.3 (2017-04-06)
## 0.3.3 (2017-04-06)

* Added CHANGELOG and release process [#172](https://github.com/argaen/aiocache/issues/172) [argaen]
* Added pool_min_size pool_max_size to redisbackend [#167](https://github.com/argaen/aiocache/issues/167) [argaen]
Expand All @@ -50,13 +87,13 @@
* Cache instance in decorators is built in every call [#135](https://github.com/argaen/aiocache/issues/135) [argaen]


# 0.3.1 (2017-02-13)
## 0.3.1 (2017-02-13)

* Changed add redis to use set with not existing flag [#119](https://github.com/argaen/aiocache/issues/119) [argaen]
* Memcached multi_set with ensure_future [#114](https://github.com/argaen/aiocache/issues/114) [argaen]


# 0.3.0 (2017-01-12)
## 0.3.0 (2017-01-12)

* Fixed asynctest issues for timeout tests [#109](https://github.com/argaen/aiocache/issues/109) [argaen]
* Created new API class [#108](https://github.com/argaen/aiocache/issues/108)
Expand Down
2 changes: 1 addition & 1 deletion aiocache/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.5.2'
__version__ = '0.6.0'

0 comments on commit bd5c68b

Please sign in to comment.