Skip to content

Commit

Permalink
Bump to v0.5.0, update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
sorentwo committed Dec 12, 2014
1 parent 8882552 commit 13ad1b4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,15 @@
## v0.5.0 2014-12-12

- Added: All read and write operations are marshalled to and from storage. This
allows hashes, arrays, etc. to be restored instead of always returning a
string. Unlike `ActiveSupport::Store::Entity`, no new objects are allocated
for each entity, reducing GC and improving performance.
- Fixed: Increment/Decrement interface was only accepting two params instead of
three. Now accepts `amount` as the second parameter.
- Changed: Increment/Decrement no longer use `incby` and `decby`, as they don't
work with marshalled values. This means they are not entirely atomic, so race
conditions are possible.

## v0.4.0 2014-12-11

- Added: Force the use of `hiredis` as the adapter. It is dramatically faster,
Expand Down
2 changes: 1 addition & 1 deletion lib/readthis/version.rb
@@ -1,3 +1,3 @@
module Readthis
VERSION = '0.4.0'
VERSION = '0.5.0'
end

0 comments on commit 13ad1b4

Please sign in to comment.