Skip to content

Commit

Permalink
Bump version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
argaen committed Jul 1, 2017
1 parent 0bf8ae1 commit 9af5e7c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
# Changelog


## 0.7.0 (2017-07-01)

* Upgrade to aioredis 0.3.3. - Manuel Miranda

* Get CMD now returns values that evaluate to False correctly [#282](https://github.com/argaen/aiocache/issues/282) - Manuel Miranda

* New locks public API exposed [#279](https://github.com/argaen/aiocache/issues/279) - Manuel Miranda
_Users can now use aiocache.lock.RedLock and
aiocache.lock.OptimisticLock_

* Memory now uses new NullSerializer [#273](https://github.com/argaen/aiocache/issues/273) - Manuel Miranda
_Memory is a special case and doesn't need a serializer because
anything can be stored in memory. Created a new NullSerializer that
does nothing which is the default that SimpleMemoryCache will use
now._

* Multi_cached can use args for key_from_attr [#271](https://github.com/argaen/aiocache/issues/271) - Manuel Miranda
_before only params defined in kwargs where working due to the
behavior defined in _get_args_dict function. This has now been fixed
and it behaves as expected._

* Removed cached key_from_attr [#274](https://github.com/argaen/aiocache/issues/274) - Manuel Miranda
_To reproduce the same behavior, use the new `key_builder` attr_

* Removed settings module. - Manuel Miranda

## 0.6.1 (2017-06-12)

#### Other
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.6.1'
__version__ = '0.7.0'

0 comments on commit 9af5e7c

Please sign in to comment.